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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
PetyrBaelish
Resolver III
Resolver III

Conditional Formatting - top 3

I have a report that is like a league table. Is it possible to have, for a given column, conditional formatting rules that will highlight the top 3 values within this column? Actually I want each 3 values to be a slightly different colour to distinguish between the best, 2nd best and 3rd best in that column.

 

I intend to do similar rules to many columns, and having all rows rather than just the top 3 in each column formatted doesn't look nice. Having a "top 3" is the key thing but the formatting rules don't appear to allow it.

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@PetyrBaelish, try this:

 

1. Create the following measures:

Category Rank = 
RANKX ( ALL ( TestData[Category] ), CALCULATE ( SUM ( TestData[Amount] ) ), , ASC, Dense )

Category Rank Color = 
SWITCH ( [Category Rank],
1, "#CDE7FF",
2, "#72BCFF",
3, "#1B92FF"
)

 

2. Add [Category Rank] (and other fields) to a matrix.

 

3. Add conditional formatting to [Category Rank] as follows: format by Field value, based on field Category Rank Color.

 

DataInsights_0-1597610889321.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
DataInsights
Super User
Super User

@PetyrBaelish, try this:

 

1. Create the following measures:

Category Rank = 
RANKX ( ALL ( TestData[Category] ), CALCULATE ( SUM ( TestData[Amount] ) ), , ASC, Dense )

Category Rank Color = 
SWITCH ( [Category Rank],
1, "#CDE7FF",
2, "#72BCFF",
3, "#1B92FF"
)

 

2. Add [Category Rank] (and other fields) to a matrix.

 

3. Add conditional formatting to [Category Rank] as follows: format by Field value, based on field Category Rank Color.

 

DataInsights_0-1597610889321.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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