Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello Community,
Is it possible to see in a column like below The 3 best and the 3 worst with.
Thank you
Solved! Go to Solution.
Hi @Milozebre ,
Try to do like this:
1. creating a calculated column:
Rank =
RANKX(
'Sheet1 (2)',
[quantity],
, ASC, Dense
)2. creating a measure:
Color =
VAR x =
CALCULATE(
MAX([Rank]),
ALL('Sheet1 (2)')
)
RETURN
IF(
MAX([Rank]) >= 1 && MAX([Rank]) <= 3,
"red",
IF(
MAX([Rank]) <= x && MAX([Rank]) >= x-2,
"green"
)
)3. adding the measure to "Conditional formatting->Background color":
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Milozebre ,
Try to do like this:
1. creating a calculated column:
Rank =
RANKX(
'Sheet1 (2)',
[quantity],
, ASC, Dense
)2. creating a measure:
Color =
VAR x =
CALCULATE(
MAX([Rank]),
ALL('Sheet1 (2)')
)
RETURN
IF(
MAX([Rank]) >= 1 && MAX([Rank]) <= 3,
"red",
IF(
MAX([Rank]) <= x && MAX([Rank]) >= x-2,
"green"
)
)3. adding the measure to "Conditional formatting->Background color":
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hil @v-lionel-msft ,
Thank you very much for your reply.
Its perhaps a stupid question but what's "sheet1 (2)"
Hello @luapdoniv ,
Thank you for the reply.
I want to see the same view like that.
If not, only the highlighted 🙂
Thnak you in advance
This is the closest I could get.
Highlight top 3 values by conditional format as background color and highlight bottom 3 values by conditional format as font color
OR
Highlight top 3 values by conditional format as background color and highlight bottom 3 Names by conditional format as background color
Will continue R&D to see if your requirement can be achieved. Let me know if this helps.
This is the closest I could get:
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 55 | |
| 42 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 113 | |
| 106 | |
| 38 | |
| 35 | |
| 26 |