Forum Discussion

akhaliq7's avatar
akhaliq7
Icon for Post Prodigy rankPost Prodigy
4 years ago
Solved

The equivalent of NOT IN (SQL) in power query

I am currently using a sql native query and wish to use power query instead. I have a select subquery that uses a not in function like the one below: ( SELECT DISTINCT MAX(column1) FROM Table1 tb W...
  • Anonymous's avatar
    Anonymous
    4 years ago

    It's the equivalent to

     

    = Table.SelectRows(TableOrPriorStepName, each not List.Contains(ListOfInValues, [ColumnToCheck]))

     

    --Nate