Forum Discussion
Axiomite
2 years agoResolver II
Related Table / Lookup
Hi there, I have the following table Dax Measure Match /No Match =
IF(
Table1[Acc] = RELATED('Table2'[Acc]),
"Match",
"No_Match"
) ...
Syk
2 years agoResident Rockstar
'Table1'[Acc] 1 has 2 matches since each of your 'Table2'[Acc] values are both 1.
'Table1'[Acc] 0 has 0 matches.