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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
mujahid1022
New Member

How to get minimum of averages

 

Hello,

 

Following is my data set where I have captured the average of a column. The average colum is created using a new measure column feature with the AVERAGE function as : AVG_FYTD = AVERAGE(Reporting_KPI_DataNoSecurity[FYTDGIR])

 

Capture.JPG

As a next step I want to capture the minumum of this average values. I tried creating a new measure based on the calculated Average column using: MIN_FYTD = MIN(Reporting_KPI_DataNoSecurity[AVG_FYTD]). This does not allow me to capture the Minimum out of AVG_FTYD column.

 

Any suggestions on achieving this will be great help.

 

Thank you,

Mujahid

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @mujahid1022,

 

You can use dax to create a summary table, then use minx function to get the min average.

 

Sample:

 

Capture.PNG

 

Measure:

Avg = AVERAGE(Sheet1[Amount])

MinAvg = MINX(SUMMARIZE(ALL(Sheet1),Sheet1[Name],"Avg Amount",AVERAGE(Sheet1[Amount])),[Avg Amount])

 

Visual:

Capture2.PNG

 

Reference:

SUMMARIZE Function (DAX)

MINX Function (DAX)

 

 

Regards,

Xiaoxin Sheng

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @mujahid1022,

 

You can use dax to create a summary table, then use minx function to get the min average.

 

Sample:

 

Capture.PNG

 

Measure:

Avg = AVERAGE(Sheet1[Amount])

MinAvg = MINX(SUMMARIZE(ALL(Sheet1),Sheet1[Name],"Avg Amount",AVERAGE(Sheet1[Amount])),[Avg Amount])

 

Visual:

Capture2.PNG

 

Reference:

SUMMARIZE Function (DAX)

MINX Function (DAX)

 

 

Regards,

Xiaoxin Sheng

Greg_Deckler
Community Champion
Community Champion

So, AVG_FTD is a column or measure?



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

I have created this as a measure.

So, the problem that you have is one of context. The context in which you have individual averages is only present in your visual. I would think that what you would have to do is create a table with your 3 kpis and relate it to your other table. Then create a column in that table and calculate the averages. Then, you could create a measure to get the min of that column.



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors