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 All,
I have created a grid below, with follwing measures
Max 5yr Dollar Price = MAX(DOLLAR_PRICE)
Min 5yr Dollar Price = Min(DOLLAR_PRICE)
Diff 5yr Dollar Price = MAX(DOLLAR_PRICE) - Min(DOLLAR_PRICE)
Prct Change 5y Dollar Price = MAX(DOLLAR_PRICE) - Min(DOLLAR_PRICE) / MAX(DOLLAR_PRICE)
I need to rank countries based on Prct Change 5y Dollar Price
Formula I used for Prct Change 5y Dollar Price =
Solved! Go to Solution.
I would make a couple of changes to your measures:
Max 5yr Dollar Price = MAX([DOLLAR_PRICE])
Min 5yr Dollar Price = Min([DOLLAR_PRICE])
Diff 5yr Dollar Price = [Max 5yr Dollar Price] - [Min 5yr Dollar Price]
Prct Change 5y Dollar Price = DIVIDE(([Max 5yr Dollar Price] - [Min 5yr Dollar Price]),[Max 5yr Dollar Price],0)
Rank =
RANKX(ALL('Table24'[Country]),[Prct Change 5y Dollar Price])
All of those are just coding practice changes except for the RANKX.
I would make a couple of changes to your measures:
Max 5yr Dollar Price = MAX([DOLLAR_PRICE])
Min 5yr Dollar Price = Min([DOLLAR_PRICE])
Diff 5yr Dollar Price = [Max 5yr Dollar Price] - [Min 5yr Dollar Price]
Prct Change 5y Dollar Price = DIVIDE(([Max 5yr Dollar Price] - [Min 5yr Dollar Price]),[Max 5yr Dollar Price],0)
Rank =
RANKX(ALL('Table24'[Country]),[Prct Change 5y Dollar Price])
All of those are just coding practice changes except for the RANKX.
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 |
|---|---|
| 64 | |
| 56 | |
| 43 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 123 | |
| 108 | |
| 44 | |
| 32 | |
| 26 |