Forum Discussion
Alwyn1991
7 years agoFrequent Visitor
Calculating Percentage
Hi all, Apologies if this has already been answered but im looking to work out how to calculate the % of a column. the scenario is 100 Audits Undertaken 60 of them Passed and 40 of them have f...
- Anonymous7 years ago
Hi
you can create a measure:Passed =DIVIDE (COUNTROWS(FILTER(Table1;Table1[Column1]="pass"));COUNTROWS(Table1))
Remember to format the measure as percentage :)
Anonymous
7 years agoNot applicable
Hi
you can create a measure:
Passed =
DIVIDE (
COUNTROWS(FILTER(Table1;Table1[Column1]="pass"));
COUNTROWS(Table1)
)
Remember to format the measure as percentage :)