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
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/
2 Replies
- tackytechtomMost 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/- agd50Helper V
Well done champ!