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!
| User | Count |
|---|---|
| 64 | |
| 47 | |
| 41 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 184 | |
| 123 | |
| 106 | |
| 78 | |
| 52 |