Forum Discussion
soedholm
9 years agoRegular Visitor
match string values in two diffrent tables
Hi, I have two tables what each have a column for email. I'd like to "match" the emails to get country value from the second table into the first. Situation is: Table A: email1 Table B: ...
- 9 years ago
Thanks!!!!
- 9 years ago
You can also use DAX to achieve your goal. Just add the calculated column in table A and use LOOKUPVALUE() to get the country column.
Country Column = LOOKUPVALUE(TableB[Country],TableA[Email1],TableB[Email2])
Regards,
v-sihou-msft
9 years agoMicrosoft Employee
You can also use DAX to achieve your goal. Just add the calculated column in table A and use LOOKUPVALUE() to get the country column.
Country Column = LOOKUPVALUE(TableB[Country],TableA[Email1],TableB[Email2])
Regards,