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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.