Forum Discussion
Filtering Table based on field in another table
- Anonymous3 years ago
Hi akhreis
You can create a same table, but it does not have relationship with the original table.
then use the new table as table 1, the original table as table 2
then create a measure in original table"
Measure = IF(ISFILTERED('Table (2)'[Employee ID])=FALSE(),1,IF(MAX('Table'[Manager Name])=MAX('Table (2)'[Name]),1,0))put the measure to the visual filter of table2
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi akhreis
You can create a same table, but it does not have relationship with the original table.
then use the new table as table 1, the original table as table 2
then create a measure in original table"
Measure = IF(ISFILTERED('Table (2)'[Employee ID])=FALSE(),1,IF(MAX('Table'[Manager Name])=MAX('Table (2)'[Name]),1,0))
put the measure to the visual filter of table2
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- akhreis3 years agoNew Member
Woohoo! Perfect!