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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
As seen in above matrix table - im curious on how to make the final total percentages in the most bottom row show the amount increase/decrease from 2020? For eg) Card's bottom row should show 9.7% rather than 42.345. I have attached a sample dashboard with dummy data for reference:
Sample.pbix
@Anonymous
Solved! Go to Solution.
@derekli1700 , Create meausure like , Use New % in place of % measure
//Only year vs Year, not a level below
Min Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=Minx(allselected('Date'),'Date'[Year])))
Max Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=Maxx(allselected('Date'),'Date'[Year])))
New % = if(isinscope('Date'[Year]), [%], divide([Max Year]-[Min Year ],[Min Year ]))
Assumes you have separate date or year table
@derekli1700 , Create meausure like , Use New % in place of % measure
//Only year vs Year, not a level below
Min Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=Minx(allselected('Date'),'Date'[Year])))
Max Year = CALCULATE(sum('Table'[Qty]),filter(ALL('Date'),'Date'[Year]=Maxx(allselected('Date'),'Date'[Year])))
New % = if(isinscope('Date'[Year]), [%], divide([Max Year]-[Min Year ],[Min Year ]))
Assumes you have separate date or year table
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |