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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Nobuko_ao
Frequent Visitor

Countif DAX

HI,

 

I have a very simple question.

On this simple sheet as below, I counted # of ID of <50 score, using countif in excel,

as  =COUNTIF(B2:B21, "<50")

 

How do I manage it in DAX?

Many thanks in advance.

 

IDScore
52000155
52000236
52000352
52000452
52000550
52000650
52000743
52000843
52000947
52001043
52001132
52001243
52001340
52001459
52001532
52001643
52001750
52001847
52001936
52002028
1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @Nobuko_ao

 

You can use this MEASURE

 

Measure =
CALCULATE ( COUNTROWS ( Table1 ), Table1[Score] < 50 )

 

or this one

 

Measure 2 =
COUNTROWS ( FILTER ( Table1, Table1[Score] < 50 ) )

 

or this one

 

Measure 3 =
COUNTX ( FILTER ( Table1, Table1[Score] < 50 ), 1 )

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi @Nobuko_ao

 

You can use this MEASURE

 

Measure =
CALCULATE ( COUNTROWS ( Table1 ), Table1[Score] < 50 )

 

or this one

 

Measure 2 =
COUNTROWS ( FILTER ( Table1, Table1[Score] < 50 ) )

 

or this one

 

Measure 3 =
COUNTX ( FILTER ( Table1, Table1[Score] < 50 ), 1 )

Thank you !!

 

My problem has solved succesfully!!

 

best

 

Nobuko

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors