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
RanHo
Helper V
Helper V

How to get highest first, second . . . fifth value in a Column

Good day!

           Can someone help me how to get the first , second until 10th highest value data in a column that will be using in Gauge visual jus like this one:
111.JPG

and also the maximum value is different from each other but I just get it on one column. How can I do that?

Thanks in advance.

-RanHo





4 REPLIES 4
v-luwang-msft
Community Support
Community Support

Hi @RanHo ,

Has your problem been solved, if so, please consider Accept a correct reply as the solution or share your own solution to help others find it.If not ,pls share a sample data for your case.

 

 

Best Regards
Lucien

@v-luwang-msft not yet, still working on it.

RanHo
Helper V
Helper V

@amitchandak thanks sir I'll try it.

 

amitchandak
Super User
Super User

@RanHo , Try measure  like

 

Rank Discount % = RANKX(all("Item"[Category]),[Discount %],,DESC,Dense)

 

2nd = calculate( [Rank Discount %], filter( value("Item"[Category]), [Rank Discount %] =2 ) )

 

or use maxx, sumx or averagex

 

maxx(filter( value("Item"[Category]), [Rank Discount %] =2 ), [[Rank Discount %])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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