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.
Anonymous
6 years agoNot applicable
Ashish_Mathur The below worked perfectly! Thank you for the response over the weekend and quick reply this morning!
AP Cases = CALCULATE(COUNTROWS('Pols Outcome'),'Pols Outcome'[Canx/Void]<>"Void",'Pols Outcome'[AP]>0)
Kind regards,
Jordan
Ashish_Mathur
6 years agoSuper User
You are welcome.