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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Second opinion on my DAX Code plz. (COUNT DAX)

Hi everyone, 

 

I have a table that I'm trying to count if between two numbers. See the code below. The code is looking to count each row if a rate is greater than or equal to 4 and less than or equal to 5. 

 

However, what seems to be returning is, everything less than or equal to five, not inbetween. 

 

# of Employees at or below 5 = 
CALCULATE (
    COUNTROWS ( 'Current' ),
    FILTER ( 'Current', 'Current'[Rates] <= 4 >= 5 )
)

 

1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this one:

 

CALCULATE (
COUNTROWS ( 'Current' ),
FILTER ( 'Current', 'Current'[Rates] >= 4  &&  'Current'[Rates] <= 5 )
)

 

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



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

Proud to be a Super User!



View solution in original post

2 REPLIES 2
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this one:

 

CALCULATE (
COUNTROWS ( 'Current' ),
FILTER ( 'Current', 'Current'[Rates] >= 4  &&  'Current'[Rates] <= 5 )
)

 

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



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

Proud to be a Super User!



Anonymous
Not applicable

Thank you for the quick check!!!! Appreciate it, it worked. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors