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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Average Totals

I am trying to calculate the average decline rate (% change) through months and years using:

 

Avg. Liquid (mboepd):=AVERAGEX(oga_data, oga_data[Liquid (mbopd)])

 

and

 

Liquid Decline:=

VAR __LiquidPriorMonth = CALCULATE([Avg. Liquid (mboepd)], PARALLELPERIOD('Calendar'[Date], -1, MONTH))

RETURN

DIVIDE([Avg. Liquid (mboepd)] - __LiquidPriorMonth, __LiquidPriorMonth)

 

The monthly decline calculates as expected but the subtotals are not correct.

 

Could sombody please explain where I am going wrong?

 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Keep your existing measures, but use a measure like this in your visual (assume you have a column called YearMonth in your Date table).

 

NewMeasure = AverageX(Values(Date[YearMonth]), [Liquid Decline])

 

This should work both for your rows and subtotal.

 

If this works for you, please mark it as solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

3 REPLIES 3
mahoneypat
Employee
Employee

Keep your existing measures, but use a measure like this in your visual (assume you have a column called YearMonth in your Date table).

 

NewMeasure = AverageX(Values(Date[YearMonth]), [Liquid Decline])

 

This should work both for your rows and subtotal.

 

If this works for you, please mark it as solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Anonymous
Not applicable

Thanks - that works as expected to get % change by month on the rows and an average of the % change for the year in the subtotals.

 

Could you also tell me if it's possible to keep % change by month on the rows and get a % change for each year for the subtotals?  

Greg_Deckler
Super User
Super User

This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors