Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not 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 returns. How can I do this with Card filter

4 REPLIES 4
v-luwang-msft
Community Support
Community 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())

vluwangmsft_0-1659506834228.png

 

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:

vluwangmsft_1-1659506947841.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

SpartaBI
Community Champion
Community Champion

@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"
)
)


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Anonymous
Not applicable

nabilc02_0-1659018534688.png

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"
)
)


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors