Forum Discussion
Stuznet
Helper V
8 years agoVlookup 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. ...
- 8 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
Super User
8 years agoHi 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
Helper V
8 years agoThank you so much, it worked.