Forum Discussion
agd50
3 years agoHelper V
Counting a boolean type
How do I work around this (I cannot change the table) as I want to be able to show the count of a true or false - in this case false Kind Regards, Andrew
- 3 years ago
Hi agd50 ,
How about the following:
Here the example table:
Here the measure:
MeasureCount = COuntROWS ( FILTER ( 'Table', 'Table'[Column] = FALSE ) )
Here the result:
Let me know if this solves your issue 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
tackytechtom
3 years agoMost Valuable Professional
Hi agd50 ,
How about the following:
Here the example table:
Here the measure:
MeasureCount = COuntROWS ( FILTER ( 'Table', 'Table'[Column] = FALSE ) )
Here the result:
Let me know if this solves your issue 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
agd50
3 years agoHelper V
Well done champ!