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! It's time to submit your entry. Live now!
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! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 43 | |
| 30 | |
| 26 | |
| 23 |
| User | Count |
|---|---|
| 135 | |
| 114 | |
| 58 | |
| 39 | |
| 35 |