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
Hi everyone,
Simply put I would like to toggle between my absolute values in a table/matrix to % as a column or row or grand total.
How can I achieve this ?
Thank you
Solved! Go to Solution.
You may create a slicer table like below.Then create a measure to get the value.
Value_New =
IF (
ISFILTERED ( Slicer[Type] ),
SUM ( 'Table'[Value] )
/ CALCULATE ( SUM ( 'Table'[Value] ), ALLEXCEPT ( 'Table', 'Table'[date] ) ),
SUM ( 'Table'[Value] )
)
Regards,
Cherie
You may create a slicer table like below.Then create a measure to get the value.
Value_New =
IF (
ISFILTERED ( Slicer[Type] ),
SUM ( 'Table'[Value] )
/ CALCULATE ( SUM ( 'Table'[Value] ), ALLEXCEPT ( 'Table', 'Table'[date] ) ),
SUM ( 'Table'[Value] )
)
Regards,
Cherie
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 47 | |
| 43 | |
| 26 | |
| 19 |
| User | Count |
|---|---|
| 196 | |
| 127 | |
| 102 | |
| 67 | |
| 49 |