Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi all,
I'm struggling with a clean way to calculate the daily average per month and then sum those values YTD. To better describe what I'm after.. Here is my table setup:
Daily Date | Monthly Rollup Date | Operator | Forecast Value |
1/1/2023 | 1/1/2023 | a | 10 |
1/1/2023 | 1/1/2023 | b | 12 |
1/2/2023 | 1/1/2023 | a | 10 |
... | ... | ... | |
2/1/2023 | 2/1/2023 | a | 15 |
So the goal would be:
Let me know if this isn't detailed enough and I can add additional detail. I can see how to do this by creating a ton of measures for each month, however I am trying not to create 20 or so measures to accomplish this.
Solved! Go to Solution.
Hi @fetterr ,
You can create the following measures:
Average Group By Operator And Month = CALCULATE(AVERAGE('Table'[Forecast Value]),FILTER(ALLSELECTED('Table'),[Operator]=MAX('Table'[Operator])&&[Monthly Rollup Date]=MAX('Table'[Monthly Rollup Date])))
Multiply Group By Operator =
var _day=COUNTROWS(FILTER(ALLSELECTED('Table'),[Operator]=MAX('Table'[Operator])&&[Monthly Rollup Date]=MAX('Table'[Monthly Rollup Date])))
return
_day*[Average Group By Operator And Month]
YTD Group By Operator = SUMX(FILTER(ALLSELECTED('Table'),[Operator]=MAX('Table'[Operator])&&[Monthly Rollup Date]<=MAX('Table'[Monthly Rollup Date])),[Multiply Group By Operator])
The calculations are grouped according to the Operator, if you don't want to group, just remove that part.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @fetterr ,
You can create the following measures:
Average Group By Operator And Month = CALCULATE(AVERAGE('Table'[Forecast Value]),FILTER(ALLSELECTED('Table'),[Operator]=MAX('Table'[Operator])&&[Monthly Rollup Date]=MAX('Table'[Monthly Rollup Date])))
Multiply Group By Operator =
var _day=COUNTROWS(FILTER(ALLSELECTED('Table'),[Operator]=MAX('Table'[Operator])&&[Monthly Rollup Date]=MAX('Table'[Monthly Rollup Date])))
return
_day*[Average Group By Operator And Month]
YTD Group By Operator = SUMX(FILTER(ALLSELECTED('Table'),[Operator]=MAX('Table'[Operator])&&[Monthly Rollup Date]<=MAX('Table'[Monthly Rollup Date])),[Multiply Group By Operator])
The calculations are grouped according to the Operator, if you don't want to group, just remove that part.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
59 | |
58 |