Forum Discussion
himamanae
3 years agoNew Member
How to get Pass % from the table
I need to get the Pass % and Execution %, how to create new measure for this?
- 3 years ago
Will return all percentages , perhaps on a card?
% Total = VAR _A = CALCULATE( COUNTA('Table'[Status]) ) VAR _B = CALCULATE(COUNTA( 'Table'[Status] ), ALL( 'Table' ) ) RETURN _A / _B
ronrsnfld
3 years agoSuper User
Will return all percentages , perhaps on a card?
% Total =
VAR _A =
CALCULATE(
COUNTA('Table'[Status])
)
VAR _B =
CALCULATE(COUNTA( 'Table'[Status] ), ALL( 'Table' ) )
RETURN
_A / _B