Forum Discussion
Measure to compare values in two different table
- 4 years ago
Hi, gauravnarchal ;
Try it.
Result = IF(MAX('Table1'[Number]) in VALUES(Table2[Number]),"TRUE","FALSE")The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft, Anonymous, Tahreem24, amitchandak
Not to piggyback, but I have an additional question to the above solutions.
Table 1 is an employee roster. (Employee ID, name, work location)
Table 2 is a list of employees who have been audited (Employee ID, name, date audited)
The measures above show me a True/False if an employee appears on Table 2 (the audit list). However, I would like to use a slicer to filter by work location. Currently, my slicer returns the entire list of employees (with the correct True/False result ) instead of only those who are assigned to the sliced/selected work location.
Any ideas?