Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi there,
I have the following table
Dax Measure
Match /No Match =
IF(
Table1[Acc] = RELATED('Table2'[Acc]),
"Match",
"No_Match"
)
I would expect 1 Match, however, I get a value returning both rows as "Match".
The 2 tables are connected Many to one.
What am I missing?
Kind Regards.
'Table1'[Acc] 1 has 2 matches since each of your 'Table2'[Acc] values are both 1.
'Table1'[Acc] 0 has 0 matches.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 20 | |
| 11 |
| User | Count |
|---|---|
| 62 | |
| 55 | |
| 46 | |
| 45 | |
| 34 |