cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
kulkarnipriya87
Helper IV
Helper IV

MAX MIN, AVERAGE




I have the following measures.
Weekly Demand is calculated correctly. But now I want to calculate Max, Min and Average Weekly Demand.
Expected output :
The measure should pick the Max value, min value and average from weekly demand.
MAX Weekly Demand = 7708
Min Weekly Demand = 4323.06

kulkarnipriya87_0-1682446604510.png

 

1 ACCEPTED SOLUTION

@kulkarnipriya87 OK, so let's say you want a single MAX of your MinScoreMeasure, that would be this:

Max Min Score =
  VAR __Table = 
    SUMMARIZE(
      'Table',
      [VT Code],
      [Customer Material Code],
      [WeekNo],
      "__Min", [MinScoreMeasure]
    )
  VAR __Result = MAXX( __Table, [__Min] )
RETURN
  __Result

@ 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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

@kulkarnipriya87 This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149

The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.

 

Also, First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

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

Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8


@ 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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

kulkarnipriya87_1-1682482527371.png

@Greg_Deckler 
My data is in this format.
Weekly demand = SUM(Table[Value])

Now I want to take the sum of all the rows week wise and calculate the max value, min value, and average value from all that sum.

kulkarnipriya87_0-1682482304136.png

@Greg_Deckler 
I want only one MIN value from the weekly demand measure.
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
This measure gives me Min value week-wise.

 

@kulkarnipriya87 OK, so let's say you want a single MAX of your MinScoreMeasure, that would be this:

Max Min Score =
  VAR __Table = 
    SUMMARIZE(
      'Table',
      [VT Code],
      [Customer Material Code],
      [WeekNo],
      "__Min", [MinScoreMeasure]
    )
  VAR __Result = MAXX( __Table, [__Min] )
RETURN
  __Result

@ 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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors