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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Add a Filter in a dax formula

Hi everyone, 

I have a DAX formula that is working ok, but i need to add a filter.

My actual DAX formula is:

Enabled  = CALCULATE((COUNTROWS('Peru - Registros y MAU GRUPO'),'Peru - Registros y MAU GRUPO'[Estado]="Enabled")
In the same table, i have a row with ages. I need to add in the previous formula the filter "less or equal than 30".
 
So the final result of the formula will only count the enable that has less or equal than 30.
 
Any body knows how??
thanks a lot!!
1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Try

 

Enabled =
CALCULATE (
    COUNTROWS ( 'Peru - Registros y MAU GRUPO' ),
    'Peru - Registros y MAU GRUPO'[Estado] = "Enabled",
    'Peru - Registros y MAU GRUPO'[Ages] <= 30
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Try

 

Enabled =
CALCULATE (
    COUNTROWS ( 'Peru - Registros y MAU GRUPO' ),
    'Peru - Registros y MAU GRUPO'[Estado] = "Enabled",
    'Peru - Registros y MAU GRUPO'[Ages] <= 30
)
Anonymous
Not applicable

Thanks a lot!!!!!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors