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
laganlee
Helper II
Helper II

DAX Show matching values from both tables where there is a many to many

Hi

I have two tables where there is a many to many relationship.

I want to see where the IDs match and are also occurring more than once:

e.g.

Table 1:           Table 2:          Output Table

ID                      ID                        ID

12                      10                        14

14                       14

14                      14

14                       15

15

15

Many thanks for looking!

 

1 ACCEPTED SOLUTION
laganlee
Helper II
Helper II

Many thanks for that!

It's put me on the right track. 

View solution in original post

2 REPLIES 2
laganlee
Helper II
Helper II

Many thanks for that!

It's put me on the right track. 

tamerj1
Super User
Super User

Hi @laganlee 

please try

Output Table =
VAR T1 =
FILTER (
'Table 1',
COUNTROWS (
CALCULATETABLE ( 'Table 1', ALLEXCEPT ( 'Table 1', 'Table 1'[ID] ) )
) > 1
)
VAR T2 =
FILTER (
'Table 2',
COUNTROWS (
CALCULATETABLE ( 'Table 2', ALLEXCEPT ( 'Table 2', 'Table 2'[ID] ) )
) > 1
)
RETURN
DISTINCT ( INTERSECT ( T1, T2 ) )

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.

Top Solution Authors