Forum Discussion
CJ_96601
6 years agoHelper V
DAX Help
Hi, please refer to below tables: Table 1 shows employee No (EmpNo) Table 2 shows employee details with performance rating and year Table 1 and table 2 relationship is by EmpNo Filtered ...
v-chuncz-msft
6 years agoCommunity Support
You may refer to the measure below.
Measure =
MAXX (
FILTER (
Table2,
Table2[Year]
= SELECTEDVALUE ( 'Calendar'[Year] ) - 1
),
Table2[Performance]
) & ""
CJ_96601
6 years agoHelper V
Thanks...but it is not working...