I have a need to filter the import where the columns are not one of three values.
So [Currency] cannot be GB or Euro or Yen
Currently I have three rows of m that do
Table.SelectRows(#… , each [Currency] <> “GB”
Table.SelectRows(#… , each [Currency] <> “Euro”
Table.SelectRows(#… , each [Currency] <> “Yen”
is it possible to do a in and a list like SQL has
in (“GB”,“Euro”,YEN")