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
Palobidonde
New Member

Countrows

Hola! Estoy teniendo problemas con una formula dax: 

Mi tabla tiene 766 filas, pero cuando utilizo la formula 

Total sour = COUNTROWS('Data 1 -dinohunter') para que me traiga ese valor, me trae uno totalmente diferente.
Palobidonde_1-1689002647205.png

Palobidonde_0-1689002578565.png

Alguien podria ayudarme?

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Palobidonde ,

This is due to the influence of the filter context, you need to remove the filter context.

Please replace your dax formual with below:

Total sour = COUNTROWS(All('Data 1 -dinohunter'))

 

For more details, you can read related document: Row Context and Filter Context in DAX - SQLBI , Filter context in DAX - SQLBI

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Palobidonde ,

This is due to the influence of the filter context, you need to remove the filter context.

Please replace your dax formual with below:

Total sour = COUNTROWS(All('Data 1 -dinohunter'))

 

For more details, you can read related document: Row Context and Filter Context in DAX - SQLBI , Filter context in DAX - SQLBI

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Ahmedx
Super User
Super User

pls try this

Total sour = CALCULATE (COUNTROWS('Data 1 -dinohunter') ,REMOVEFILTERS())

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