Forum Discussion
KayZak
7 years agoNew Member
Counting Rows with Literal TRUE or FALSE Value
No one seems to explain the simple things in DAX in a way I can understand. All my searches have come up with measures that will convert a Boolean (1/0) to a True/False within rows, but I just need...
- 7 years ago
You need a measure that filters your table with the columnName = "TRUE". Then count the rows.
COUNTROWS(FILTER( theTable, [theColumn] = "TRUE"))
KayZak
7 years agoNew Member
Also Tried Measure = CALCULATE(COUNT('Table'[Row] = TRUE()))