Limitations
- This example uses some HTML and CSS that do not render in PDFs or PNGs. Only use this if you donβt need it delivered.
- This example requires all team members have the same goal value. You could adjust the math if you need to do varying target values.
- This version adds a crown to any team member that exceeds the target.

Setup
These charts use the Mustache iterator syntax to draw a circle on the progress tracker for each row in the results. The following table explains each field used in the example, including the calculation formulas.
| Col | Name | Description or formula | Notes |
|---|---|---|---|
| A | Sales Rep | Name used in tooltip | |
| B | Quota | target value | Must be the same for each individual |
| C | To date | current value | must be > 0 but can exceed target |
| D | % to quota | =C1 / B1 | % to goal - can be > 100% |
| E | is over quota | =IF(D1 >= 1, βoverβ, "") | used to add a crown if user is over quota |
| F | Max dollars | =MAX(MAX(C:C), B1) | needed for calculating positions if anybody is over quota |
| G | Max % | =MAX(MAX(D:D), 1) | used for presentation in the tooltip |
| H | Someone over quota | =IF(G1 > 1, βoverβ, "") | flag to change range of tracker if anybody is over quota |
| I | Initials | Not used in this example but could be used instead of picture | |
| J | Image | used as background of the circle |