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
I am trying to filter rows of data based on 2 conditions, if store = X and date is X. Then if the 2 conditions are met, I need the row removed. How should this be coded in query editor? I'm struggling! Thanks.
Solved! Go to Solution.
In Power Query, create a custom column:
if [Store] = "A" and [Date] = #date(2021, 1, 3) then 1 else 0
Then filter the custom column to exclude 1:
Proud to be a Super User!
In Power Query, create a custom column:
if [Store] = "A" and [Date] = #date(2021, 1, 3) then 1 else 0
Then filter the custom column to exclude 1:
Proud to be a Super User!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 26 | |
| 23 | |
| 19 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 46 | |
| 46 | |
| 43 | |
| 36 | |
| 31 |