Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
email2
country
I'd like to say "If Email2 in Table B matches Email1 in Table A, add value in Table A for country". Is this possible?
Solved! Go to Solution.
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,
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,
Thanks!!!!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
39 | |
31 | |
26 |
User | Count |
---|---|
97 | |
87 | |
43 | |
40 | |
35 |