Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.