Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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 returns. How can I do this with Card filter
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
@Anonymous something in the form of:
MEASURE =
COUNTROWS(
FILTER(
'The relvant table or combination of columns that when putting the measure next to them you get the right result',
[Your Measure] = "Yes"
)
)
The name of the measure is "Expiry". And whenever I try and call it in the table i getan error saying "Parameter is not the correct type".
@Anonymous this is not how I wrote it 🙂
Let's try now with your names:
MEASURE =
COUNTROWS(
FILTER(
'ITRMP Controls'
'ITRMP Controls'[Expiry] = "Yes"
)
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 52 | |
| 41 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 106 | |
| 39 | |
| 33 | |
| 25 |