Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi.
I have a list of employees and I want to exclude from the list those that are displayed on the result of a filter. Example:
Complete list has Employee A, Employee B, Employee C and Employee D. The result of the filter is Employe A, Employee B. I want a second list that shows only Employee C and Employee D.
Is there any way to show the "complement" of the whole list?
Thanks
Ezequiel
Solved! Go to Solution.
Hi, @ezequiel ;
You could create another table as slicer without relationship .
1.create a table as slicer.
slicer = VALUES('Table'[Employee])
2.create a flag measure.
flag = IF(MAX([Employee]) in ALLSELECTED('slicer'[Employee]),1,0)
3. apply the measure into visual filter.
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.
Hi, @ezequiel ;
You could create another table as slicer without relationship .
1.create a table as slicer.
slicer = VALUES('Table'[Employee])
2.create a flag measure.
flag = IF(MAX([Employee]) in ALLSELECTED('slicer'[Employee]),1,0)
3. apply the measure into visual filter.
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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 112 | |
| 108 | |
| 39 | |
| 34 | |
| 27 |