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
I have a set of data, as below. I need to achieve the following:
Finally, I need the table/rank to change if my slicer of vendor, for example, changes.
Any ideas?
Thanks
Data example:
Customer Sales Vendor
a 100 a
a 100 a
a 100 a
b 100 b
b 50 a
b 100 b
c 10 c
c 50 a
c 100 a
d 90 b
d 20 c
d 60 a
e 100 c
e 75 b
e 50 b
f 40 a
f 90 c
f 75 b
Solved! Go to Solution.
@Anonymous
Hello @Anonymous,
you need to build the below simple model
and add the below measures:
TotalSales = SUM( Sales[Sales] )
Customer Rank =
IF(
COUNTROWS( Sales ) > 0,
VAR Ranking =
IF(
HASONEVALUE( Customers[Customer] ),
RANKX(
ALLSELECTED( Customers[Customer] ),
[TotalSales],,DESC
)
)
RETURN IF( Ranking < 3, Ranking, "Other" )
)
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
@Anonymous
Hello @Anonymous,
you need to build the below simple model
and add the below measures:
TotalSales = SUM( Sales[Sales] )
Customer Rank =
IF(
COUNTROWS( Sales ) > 0,
VAR Ranking =
IF(
HASONEVALUE( Customers[Customer] ),
RANKX(
ALLSELECTED( Customers[Customer] ),
[TotalSales],,DESC
)
)
RETURN IF( Ranking < 3, Ranking, "Other" )
)
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
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 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 112 | |
| 108 | |
| 39 | |
| 34 | |
| 27 |