Forum Discussion
Stuznet
Helper V
7 years agoFind matching value in another table and return with text string
Hi all, I've been looking around but couldn't find the simple solution to my work. So I have 2 tables and I need to perform lookup. If table1[Item] = table[Item] then it is "match" Table...
- 7 years ago
Apologies, I'm not understanding this I feel, but if you want to know if there is a match in another table, you could do this:
Column = IF(COUNTROWS(FILTER(ALL('Table2'),'Table2'[Item] = [Item]))>0,"Match",BLANK())
Greg_Deckler
Community Champion
7 years agoApologies, I'm not understanding this I feel, but if you want to know if there is a match in another table, you could do this:
Column = IF(COUNTROWS(FILTER(ALL('Table2'),'Table2'[Item] = [Item]))>0,"Match",BLANK())Stuznet
Helper V
7 years agoThank you so much Greg_Deckler.