Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Exclude items from a filtered list

I have a master table of person's names and I have a separate table of individuals I want to exclude from the master list.   Rather than removing the individuals one by one from the visual/page/rep...
  • Anonymous's avatar
    Anonymous
    7 years ago

    Found 2 methods doing so:

    1) Except(SelectColumns(MasterTable, "XXX", MasterTabl[Name]), SelectColumns(ListToExclude, "YYY", ListToExclude[Name]))

     

    2) Anti Join using merge queries

     

    thanks!