Forum Discussion
Stuznet
7 years agoHelper V
Vlookup from Another Table Return Value from Column
Please help, I'm currently struggling getting the same result from Excel in to Power BI. So basically I need to do a vlookup from table 1 and table 2 and returned result from Table 2 Column E and F. ...
- 7 years ago
Hi Stuznet,
In DAX you should use the LOOKUPVALUE formula (see documentation here):
LOOKUPVALUE( Table2[CTR_Num, Table2[VI_Key], Table1[VI_Key])
Regards,
MFelix
MFelix
7 years agoSuper User
Hi Stuznet,
In DAX you should use the LOOKUPVALUE formula (see documentation here):
LOOKUPVALUE( Table2[CTR_Num, Table2[VI_Key], Table1[VI_Key])
Regards,
MFelix
Stuznet
7 years agoHelper V
Thank you so much, it worked.