Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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 November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!