Forum Discussion
nagaraj
6 years agoPost Patron
LookupValue with Filter
Hi, Need help with DAX for below scenario Scenario: Have TABLE1 and TABLE2, need to populate manager (in TABLE1) by having lookup (in TABLE2). In TABLE2 i have multiple values for a single ...
MG86
5 years agoAdvocate II
I know this is an older thread, but for future reference isn't it easier to just use the second lookup parameters of LOOKUPVALUE?:
LOOKUPVALUE(
'Table2'[Name], 'Table2'[Id], 'Table1'[Id], 'Table2[Type], "Manager")
BerryBIA
3 years agoAdvocate I
this is the only correct answer !