Forum Discussion
Anonymous
6 years agoNot applicable
Count rows ignoring value in other rows
Hi all, I need to create a measure from a single table "Pols Outcome", that provides me with what I believe is a countif, but I can't quite figure it out by videos. I need a single measure that g...
- 6 years ago
Hi,
Try this measure
=CALCULATE(COUNTROWS('Pols Outcome'),'Pols Outcome'[Canx/Void]<>"Void"&&'Pols Outcome'[AP]>0)
Hope this helps.
amitchandak
6 years agoSuper User
Anonymous , try like. add remove filter as per need. If you want to use OR use ||
countx(filter(table,table[Canx/Void]<>"void" && table[AP] <> 0),table[AP])
OR
calculate(countrows(filter(table,table[Canx/Void]<>"void" && table[AP] <> 0)))