Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.