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
Fariba1984
Frequent Visitor

How to calculate n top value of a measure

Hi experts,

 

I have a claculated measure, which is strongly related to Date-Values. In a Time range, I would like to sort asc this measure and then calculate the average of n values of it.

n is: 

Quantile:=
var CalculateQuantil= ROUNDUP(DISTINCTCOUNT(Table1[Date_SID]) * 0,2;0)
return CalculateQuantil

 and then:

2020-08-05 16_10_22-Mappe1 - Excel.png

How can I do that in dax?

1 ACCEPTED SOLUTION
5 REPLIES 5
hernandezguzman
Regular Visitor

Hi, 

 

Are you trying to balancing the data in bin buckets or just try to get the averages, I need to create a balancing funcinality like quantile but I was not been able to do it, do you know if there are any functions in PBI,

 

thanks?

Anonymous
Not applicable

I think this thread will answer your question.@ give the DAX with the PBIX file that you can download.

 

https://community.powerbi.com/t5/DAX-Commands-and-Tips/calculate-average-for-Top-3-5-10/td-p/904215

Thank you sir for yor post:

I am trying the following Dax:

Quantil:=
var CalculateQuantil= ROUNDUP(DISTINCTCOUNT(Table[Date_SID]) * 0,2;0)
return
CALCULATE([Measure1];
FILTER(VALUES(Table[Date_SID]);
 RANKX(VALUES(Table[Date_SID]);[Measure1];True()) <= CalculateQuantil))

 but I get this error:

Error: Calculation error in measure 'Table Analysis'[Quantil]: Function 'RANKX' does not support comparing values of type Number with values of type True/False. Consider using the VALUE or FORMAT function to convert one of the values. 

 

What is my mistake?

Greg_Deckler
Community Champion
Community Champion

@Fariba1984 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.



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.