Forum Discussion
vjnvinod
4 years agoImpactful Individual
Dax help
Hi, I have 2 tables GDS TNR data Portfolio FY22 I am using the below dax to get the name from TNR data, Name modified = LOOKUPVALUE('Portfolio report FY22'[Engagement Partner],'Portfoli...
- 4 years ago
Hi vjnvinod ,
You can try like this:-
Column = CALCULATE ( MAX ( 'Portfolio report FY22'[Engagement Partner] ), FILTER ( 'Portfolio report FY22', 'Portfolio report FY22'[Engagement ID] = 'GDS TNR Data'[EngID] && 'GDS TNR Data'[EngID] = TRUE() ) )If its not worked then please share the sample data with expected output 🙂
Thanks,
Samarth
vjnvinod
4 years agoImpactful Individual
I tried
something like below, but its throwing error
moizsherwani
4 years agoContinued Contributor
vjnvinod the solution provided by Samarth_18 is what I would recommend too