Forum Discussion
Using Average
Hi, user900
Could you share some example data and draw a simple picture to show your expected visual so that i may work out with a workaround?😀
Best Regards,
Community Support Team _ Zeon Zheng
Here is a sample of data. It shows the monthly results and the quarterly results. The quarterly results are the data points on my visual. I need the monthly to create tolerance limits which are based on historical data.
| Date | # of sys w. Inc not meeting SLA | # of systems | monthly % of systems w. Inc not meeting SLA | quarterly |
| 19-Apr | 1 | 118 | 0.0085 | |
| 19-May | 1 | 117 | 0.0085 | |
| 19-Jun | 4 | 117 | 0.0342 | 0.0512 |
| 19-Jul | 4 | 117 | 0.0342 | |
| 19-Aug | 6 | 117 | 0.0513 | |
| 19-Sep | 1 | 117 | 0.0085 | 0.0940 |
| 19-Oct | 1 | 116 | 0.0086 | |
| 19-Nov | 2 | 116 | 0.0172 | |
| 19-Dec | 2 | 116 | 0.0172 | 0.0430 |
| 20-Jan | 3 | 116 | 0.0259 | |
| 20-Feb | 0 | 116 | 0.0000 | |
| 20-Mar | 1 | 116 | 0.0086 | 0.0345 |
| 20-Apr | 0 | 117 | 0.0000 | |
| 20-May | 1 | 117 | 0.0085 | |
| 21-Jun | 2 | 117 | 0.0171 | 0.0256 |
- v-angzheng-msft5 years agoCommunity Support
Hi, user900
I have no relevant experience with this user case and am not sure I understand your needs, do you need to create a quarterly percentage accumulation, if so then try to create the following measure
_quarterly = CALCULATE(SUM('Table'[monthly % of systems w. Inc not meeting SLA]),DATESQTD('Table'[Date])).Result:
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.