Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
Dunner2020
Post Prodigy
Post Prodigy

Cumulative sum of average measure

Hi there,

 

I have got six years of data. Its regulatory year starts on 1st April and finishes on 31st March. I want to calculate the cumulative average of the sum on a monthly basis for the last 5 years (don't want to include the current year). I am doing the following steps to calculate:

Calculate the sum of value using following measure:

Sum Normalised Value = CALCULATE(sum('Fact table'[30 Mins Normalised Value]), FILTER('Date','Date'[Date] <[Current_RY_Yr_Strt] && 'Date'[Date] >= [last 5 years]))
Average of sum using following measure:
Average Normalized Value = AVERAGEX( VALUES('Date'[RY Month Year Sort]),[Sum Normalised Value])
Cumulative sum of average using following measure:
 
Cumulative Norm Value =
Var current_date = MAX('Fact table'[Date] )
RETURN
SUMX(
FILTER(ALL('Date'),'Date'[Date] <= current_date
&& 'Date'[Date] < [Current_RY_Yr_Strt] ), [Average Normalized Value])
 
When I ran the report it produces the following output:
 
leo_89_0-1619136508194.png

As you can see that cumulative Norm Value does not cumulative add Average Normalised Value. I am not sure where I made the mistake. Could anyone help me in fixing the issue?

 
Sample file can be download from here.
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Dunner2020,

According to your description, It sounds like you want to apply multiple aggregates on measure calculation, right?

IF that is the case, I'd like to suggest you add a variable with summarize function to apply the first aggregation, then you can use iterator functions to invoke the above variable table to calculate the second aggregate.

Measure Totals, The Final Word 

measure =
VAR summary =
    SUMMARIZE ( Table, [category 1], [category 2], "AVG", AVERAGE ( Table[Amount] ) )
RETURN
    SUMX ( summary, [AVG] )

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Dunner2020,

According to your description, It sounds like you want to apply multiple aggregates on measure calculation, right?

IF that is the case, I'd like to suggest you add a variable with summarize function to apply the first aggregation, then you can use iterator functions to invoke the above variable table to calculate the second aggregate.

Measure Totals, The Final Word 

measure =
VAR summary =
    SUMMARIZE ( Table, [category 1], [category 2], "AVG", AVERAGE ( Table[Amount] ) )
RETURN
    SUMX ( summary, [AVG] )

Regards,

Xiaoxin Sheng

lbendlin
Super User
Super User

"I want to calculate the cumulative average"

That's not a thing.  Did you mean to say:  "I want to calculate the average of the monthly sums" ?

Your AVERAGEX measure is missing the monthly bucketing.

 

Which average are you trying to compute?  Across all months regardless of year?

 

lbendlin_0-1619397784501.png

What would be the expected result?

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.