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
Anonymous
Not applicable

I need help with DAX. I need to calculate record id's if values in two different columns=1

 Table A     MESURE-x 
         
Record idCol AFILTER1FILTER2   COUNT RECORD IDs 
A 11     
A 10   1 
B 11     
C 11     
C 10     
D 10   1 
E 10   1 
         
       3 
         

 

The table has two filter columns, I need to count record IDs that would match to the Mesure x

2 ACCEPTED SOLUTIONS
Ritaf1983
Super User
Super User

Hi @Anonymous 

Try the measure :

test = CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[FILTER1]+'Table'[FILTER2]=1))
Please note that according to your description of the logic, the result is 4 ( not 3) because record ID "c" meets the condition too.
 
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

Anonymous
Not applicable

Yes, I agree, thank you so much!

View solution in original post

3 REPLIES 3
Ritaf1983
Super User
Super User

Hi @Anonymous 

Try the measure :

test = CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[FILTER1]+'Table'[FILTER2]=1))
Please note that according to your description of the logic, the result is 4 ( not 3) because record ID "c" meets the condition too.
 
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

@Anonymous 
Happy to help, please consider Accepting my response as the solution to help the other members find it more quickly. 
(you marked your response )

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
Anonymous
Not applicable

Yes, I agree, thank you so much!

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