Saturday 23 January 2016

Progress Bar in Reports in APEX5

APEX can create "Percentage Bars" within a report. This can be acheived using HTML Code in your Report SQL Query.
Steps:
1- Create your report:
Create an Interactive or Classic Report using SQL query :
SELECT CASE
          WHEN COLUMN <= 30
             THEN    '<div class="a-Report-percentChart" style="background-color:#000000;width:100%;"><div class="a-Report-percentChart-fill" style="width:'
                  || COLUMN
                  || '% ; background-color: 330099;"></div><span class="u-VisuallyHidden">'
                  || COLUMN
                  || '</span></div>'
                  || COLUMN
                  || '%'
          WHEN COLUMN BETWEEN 30 AND 50
             THEN    '<div class="a-Report-percentChart" style="background-color:#000000;width:100%;"><div class="a-Report-percentChart-fill" style="width:'
                  || COLUMN
                  || '% ; background-color:CC0000;"></div><span class="u-VisuallyHidden">'
                  || COLUMN
                  || '</span></div>'
                  || COLUMN
                  || '%'
          WHEN COLUMN BETWEEN 55 AND 70
             THEN    '<div class="a-Report-percentChart" style="background-color:#000000;width:100%;"><div class="a-Report-percentChart-fill" style="width:'
                  || COLUMN
                  || '% ; background-color:#99eb47;"></div><span class="u-VisuallyHidden">'
                  || COLUMN
                  || '</span></div>'
                  || COLUMN
                  || '%'
       END AS "Progress bar"
  FROM Table
Note: 
Ø Use CASE Statement to display different colors for the bars based on percentage.
Ø Value of the Column apex_util.html_pct_graph_mask must be between 0 and 100.
2-Set the Report Bar column to Standard Report Column
3-Output:
In this report we're using the employees percentage of salary within their department
Note : If you want same color for the bar then use the same query without Case Statements.

No comments:

Post a Comment