Forum Discussion
Anonymous
7 years agoNot applicable
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...
- Anonymous7 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!
AlB
7 years agoCommunity Champion
Neither of the options suggested above are measures. They're both calculated tables as indicated
Anonymous
7 years agoNot applicable
Found 2 methods doing so:
1) Except(SelectColumns(MasterTable, "XXX", MasterTabl[Name]), SelectColumns(ListToExclude, "YYY", ListToExclude[Name]))
2) Anti Join using merge queries
thanks!