Forum Discussion
agd50
Helper V
3 years agoCounting 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
Most Valuable Professional
3 years agoHi 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
Helper V
3 years agoWell done champ!