March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Folks, I have been trying to fix the error, unable to resolve it. I had created a measure "Avg USD" which normally calculate average values for each month. Its working good, and now i had creaetd another measure "Cummulative Avg" to create a cumulative of average measure, which doesn't work.
Hence to check the calculation, i had created a measure "Total USD" to calculate the sum of values of a column, in this measure i just replaced the AVERAGEX function with SUMX, its working good too. Then i had created a measure "Cummulative" to generate the cummulative of Sum. This is working fine too.
I was wondering, why the same structure behaves differently with SUMX and AVERAGEX.
Please see the snapshot i have attached.
Could you please help,where i am doing wrong. I recently started working on this Power BI.
Solved! Go to Solution.
Hi,
Please try this measure:
Cummulative Avg =
SUMX (
SUMMARIZE (
FILTER (
ALLSELECTED ( Calendar ),
'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
),
'Calendar'[MonthYr],
"Avg", [Avg USD]
),
[Avg]
)
Best Regards,
Giotto
Hi,
Please try this measure:
Cummulative Avg =
SUMX (
SUMMARIZE (
FILTER (
ALLSELECTED ( Calendar ),
'Calendar'[Date] <= MAX ( 'Calendar'[Date] )
),
'Calendar'[MonthYr],
"Avg", [Avg USD]
),
[Avg]
)
Best Regards,
Giotto
@vijayvizzu m Are you using Monthyr from Calendar table?
@amitchandak : Yes, i am using custom calender table. Please see the relational model for your reference.
Try Avg USD like this
AverageX(summarize(CALENDAR,CALENDAR[MonthYr],"_sum",[Total USD]),[_sum])
Seem like row context issue
@amitchandak I have modified existing formula with your formula, but seems doesn't work. It gives me same values as [Total USD] measure.
You want to a sum till moth level and then do Avg. If yes, We need make sure data grouped at month level and avg took after that.
So the change would, you replace [Total USD] with what ever formaul you want
AverageX(summarize(CALENDAR,CALENDAR[MonthYr],"_sum",[Total USD]),[_sum])
If it did not work
Can you share sample data and sample output.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
157 | |
97 | |
79 | |
69 |