Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
120 | |
75 | |
46 | |
44 | |
35 |
User | Count |
---|---|
180 | |
85 | |
68 | |
47 | |
46 |