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.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
227 | |
54 | |
44 | |
43 | |
41 |
User | Count |
---|---|
275 | |
211 | |
75 | |
73 | |
64 |