Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi,
I am using following measure and used it in "Total" column in a table:
I want to add one more column in the same table to show the %. I am able to do it in Excel:
I need help to achieve the same in PBI.
Solved! Go to Solution.
You can create a measure like
% =
VAR CurrentValue = [# cases]
VAR Total =
CALCULATE ( [# cases], ALLSELECTED ( 'Table'[Client] ) )
RETURN
DIVIDE ( CurrentValue, Total )
You can create a measure like
% =
VAR CurrentValue = [# cases]
VAR Total =
CALCULATE ( [# cases], ALLSELECTED ( 'Table'[Client] ) )
RETURN
DIVIDE ( CurrentValue, Total )
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.