Forum Discussion
Anonymous
4 years agoNot applicable
Count Yes
Hello, I have a measure that counts whether or not a contract is expiring within a certain amount of days. The measure outputs either 'Yes' or 'No.' I want to count all the 'Yes' values it return...
v-luwang-msft
4 years agoCommunity Support
Hi Anonymous ,
Due to not with your data ,I create the below sample:
(if value>=4,then "Yes")
pd = IF(MAX('Table'[Value])>=4,"Yes",BLANK())
Then use the below measure:
count = COUNTX(FILTER('Table','Table'[pd]="Yes"),'Table'[Value])count2 = COUNTX(FILTER(all('Table'),'Table'[pd]="Yes"),'Table'[Value])
Output result refer:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien