Forum Discussion
Leighla00
1 year agoFrequent Visitor
Cannot Create Percentage off of True/False Data
I'm trying to create a calculation that will output a percentage based off of true/false data. Completion Rate = CALCULATE(COUNT('2024'[Status]),'2024'[In Arbitration?]=TRUE()...
PwerQueryKees
1 year agoSuper User
Have you tried removing the =TRUE() altogether?
Leighla00
1 year agoFrequent Visitor
Someone at my organization helped me.
CALCULATE (COUNTROWS (tablename), FILTER (tablename, tablename[Status] = in progress)).
Thanks for trying.