Forum Discussion
Anonymous
3 years agoNot applicable
Calculated column checking if value exists in another table
Hi, I have 2 different tables 1st Table : 14000 names 2 nd table : 25000 names I would like to add a column to 2nd Table : True if same value as 1st table , False for missing value Thank ...
- 3 years ago
Hi Anonymous,
Think this function is what you're after: https://learn.microsoft.com/en-us/dax/lookupvalue-function-dax
- 3 years ago
Hi Anonymous
many options
Table2[Name] IN VALUES ( Table1[Name] )
or
CONTAINS ( Table1, Table1[Name], Table2[Name] )
or
NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )
tamerj1
Community Champion
3 years agoHi Anonymous
many options
Table2[Name] IN VALUES ( Table1[Name] )
or
CONTAINS ( Table1, Table1[Name], Table2[Name] )
or
NOT ISEMPTY ( FILTER ( Table1, Table1[Name] = Table2[Name] ) )