Forum Discussion
DAX Formula for Count from IF Statement
Hi ,
I have Measure like below.
Measure =
Var A = Sum()...
Var B = Sum()...
Return
If( A>B,"Yes","No")
here i want to count then no of Yes's and No's.
Could any one pls help.
Thanks
Nagarajan. V
Have a look at the technique here, particularly around the creation of an aggregation for the Super Group.
https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
In your case, you would use a COUNTX along with a SUMMARIZE and the correct FILTER to create a measure for the number of Yes's and another on for the number of No's.
1 Reply
- Greg_DecklerCommunity Champion
Have a look at the technique here, particularly around the creation of an aggregation for the Super Group.
https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
In your case, you would use a COUNTX along with a SUMMARIZE and the correct FILTER to create a measure for the number of Yes's and another on for the number of No's.