Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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!
Solved! Go to Solution.
Many thanks for that!
It's put me on the right track.
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 ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
12 | |
10 | |
10 | |
8 |
User | Count |
---|---|
16 | |
15 | |
14 | |
13 | |
10 |