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?
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
1 Reply
- ronrsnfldSuper 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