Forum Discussion
vwiles84
4 years agoHelper III
Filter Rows with 2 conditions
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 struggli...
- 4 years ago
In Power Query, create a custom column:
if [Store] = "A" and [Date] = #date(2021, 1, 3) then 1 else 0Then filter the custom column to exclude 1:
DataInsights
4 years agoSuper 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: