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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ramshoney1225
Helper V
Helper V

How to write Filter condition on with two different tables ?

Hi,

 

I want to write a DAX, i have two tables Tablea and tableb both are joined

i need to count and count distnct measure

 

COUNTID = count(id) based on tablea.id = tableb.id and tablea.type = "Protect"

 

I need to get count based on the two conditions in DAX

table( id )= tableb ( id ) and Tablea.type = "Protect" on

 

Thanks

Rams

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@ramshoney1225 , Assume both tables has a relation ID column

Try like

calculate(count(tablea[ID]), tablea[type] = "Protect", not(isblank(tableb[ID])))

or

calculate(count(tablea[ID]),filter(tablea, tablea[type] = "Protect" && tablea[ID]= related(tableb[ID])))

View solution in original post

Thanks for the update,

 

I'm able to use the 2nd one , i didnt understand the first one.

 

If i dont need any hard code filter in that can i use as below right ?

 

calculate(
count('tablea'[ID]),
FILTER('tablea ,'tablea'[ID] = related('tableb'[ID]))       --- Where i have relation between two tables 
)
 
Thanks
Rams

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@ramshoney1225 , Assume both tables has a relation ID column

Try like

calculate(count(tablea[ID]), tablea[type] = "Protect", not(isblank(tableb[ID])))

or

calculate(count(tablea[ID]),filter(tablea, tablea[type] = "Protect" && tablea[ID]= related(tableb[ID])))

Thanks for the update,

 

I'm able to use the 2nd one , i didnt understand the first one.

 

If i dont need any hard code filter in that can i use as below right ?

 

calculate(
count('tablea'[ID]),
FILTER('tablea ,'tablea'[ID] = related('tableb'[ID]))       --- Where i have relation between two tables 
)
 
Thanks
Rams

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.