Forum Discussion
Join on Contains logic
- Anonymous5 years ago
Hi TeeroyinOttawa ,
According to your description, I create this data:TableA:
TableB:
Here are the steps you can follow:
1. Create calculated column.
IF = IF( SUMX('TableB', FIND(UPPER('TableA'[column]), UPPER('TableB'[column]) ,,0) )>0,"Yes","Not")2. Result:
If the data of table A matches in table B, it is Yes, otherwise it is No
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi TeeroyinOttawa ,
According to your description, I create this data:
TableA:
TableB:
Here are the steps you can follow:
1. Create calculated column.
IF =
IF(
SUMX('TableB',
FIND(UPPER('TableA'[column]),
UPPER('TableB'[column])
,,0)
)>0,"Yes","Not")2. Result:
If the data of table A matches in table B, it is Yes, otherwise it is No
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey Liu,
Thanks for this, exactly what I was looking for! Thanks for helping out a "newbie"
Cheers,
Troy