For give my ignorance but I am learning Power Query commands (M). Can someone help me with the equivalent statement in Power BI for this SQL code.
SQL Statement
Select * from MyTable where Field1 not in ("AB", "AC", "FG")
Power BI Equivalent
= Table.SelectRows(MyTable, Each [Field1] ????????????
Or is there a better way.