I've a table with ID, Names and Day column as under :
+----+------+-----------------+
| ID | Name | Days |
+----+------+-----------------+
| 1 | A | 30 days or less |
| 1 | A | 30 days or less |
| 1 | A | 30 days or less |
| 1 | A | 31 to 60 days |
| 2 | B | 30 days or less |
| 2 | B | 31 to 60 days |
| 2 | B | 61 to 90 days |
| 2 | B | 61 to 90 days |
| 3 | C | 90+ days |
| 3 | C | 61 to 90 days |
+----+------+-----------------+
Alongside I've two slicers, coming from two different tables with such one column each
What I'm trying to do here is, based on the user slicer selection, I want the table to be filtered and only output "Name" that arent present in the first slicer selection, also the anti-join needs to be done on the ID column
So for the above slicer selection, viz. 30 days or less compare with 31 to 60 days, the results should be a table with column "Name" and just record "C" as its the only Name thats not present in the "30 days or less" but present in "31 to 60 days"