Forum Discussion
Ranking a value based on columns from different tables
- 9 years ago
Hi sonny,
According to your description, I create some sample data and create a calculated column in Table 1 use Rankx() function to rank the Total values based on Job Title. See:
Rank = RANKX(Table1,RIGHT( RELATED(Table2[Job Title]),1))
If above DAX doesn't meet your requirement, please share same sample data and expected results for our analysis.
Best Regards,
Qiuyun Yu
Hi sonny,
According to your description, I create some sample data and create a calculated column in Table 1 use Rankx() function to rank the Total values based on Job Title. See:
Rank = RANKX(Table1,RIGHT( RELATED(Table2[Job Title]),1))
If above DAX doesn't meet your requirement, please share same sample data and expected results for our analysis.
Best Regards,
Qiuyun Yu
Thats great, thanks Qiuyan.