Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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.
Solved! Go to Solution.
Probably you would have an answer much sooner if you posted your question in the "Desktop" forum.
Anyhow, this will do the trick:
= Table.SelectRows(MyTable, each not List.Contains({"AB", "AC", "FG"}, [Field1]))
Probably you would have an answer much sooner if you posted your question in the "Desktop" forum.
Anyhow, this will do the trick:
= Table.SelectRows(MyTable, each not List.Contains({"AB", "AC", "FG"}, [Field1]))
Thanks, it works like a charm.
As I look closer at the forum areas, I see what you mean about where I should have posted. Looking closer at the developer area questions, I see the type of development work that is taking place there.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 41 | |
| 40 | |
| 39 | |
| 38 |