Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.