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
Samarth_18
4 years agoCommunity Champion
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