Forum Discussion
akwang
8 years agoAdvocate II
Count of True / False Issue
Hi So I had posted this issue @ https://community.powerbi.com/t5/Desktop/DAX-IF-Criteria/m-p/488629#M227706 From that i had solved an issue to display in a table visualisation those meeting 3 cr...
- 8 years ago
Hi akwang
You may try to create a measure to get the total as below:
Measure = VAR a = SUMMARIZE ( Table, Table[Candidate], "a1", [PassOverAl] ) RETURN COUNTROWS ( FILTER ( a, [a1] = TRUE () ) )Regards,
Cherie
v-cherch-msft
8 years agoMicrosoft Employee
Hi akwang
You may try to create a measure to get the total as below:
Measure =
VAR a =
SUMMARIZE ( Table, Table[Candidate], "a1", [PassOverAl] )
RETURN
COUNTROWS ( FILTER ( a, [a1] = TRUE () ) )Regards,
Cherie
akwang
8 years agoAdvocate II
WOW that worked!!! Thank you very much v-cherch-msft