Fill to progress level
This style shows the unmet progress levels as unfilled, but with a border color to indicate the meaning of the level.
Setup
This chart has a very simple structure - the current measurement, the target, and the necessary calculations to create the chart. Adjust your calculation as needed for your data, but make sure you use the % formatting on the “progress” column. The following table explains each field used in the example, including the calculation formulas.
| Col | Name | Description or formula | Purpose |
|---|---|---|---|
| A | Total Sale Price | Field measuring progress | |
| B | Target (calc_1) | Goal or target | |
| C | Progress (calc_2) | =A1 / B1 | % of target to goal - make sure formatted as a % |
| D | Bars to fill (calc_3) | =ROUND(C1 * 100 / 5, 0) | Round to the number of bars to fill |
Example code
Show unmet levels as faded
This style shows the unmet progress levels as solid, but semi-transparent. As the progress levels fill, they become bolder and opaque.
Setup
The data in this example shows an inverted coloring, where low is good, as it is measuring the percentage of returned or cancelled orders. You can adjust the calculations and coloring to suit your use case, but make sure you use the % formatting on the “progress” column. The following table explains each field used in the example, including the calculation formulas.
| Col | Name | Description or formula | Purpose |
|---|---|---|---|
| A | Order ID Count Distinct | Total number of orders | Denominator for progress calculation |
| B | Count Returned | Number orders returned | Part of the numerator for progress calculation |
| C | Count Cancelled | Number orders cancelled | Other part of the numerator for progress calculation |
| D | Return and Cancel Rate (calc_1) | =(B1 + C1) / A1 | % calculation for number returned or cancelled |
| E | Bars to fill (calc_2) | =ROUND(D1 * 100 / 5, 0) | Round to the number of bars to fill |