Reputation: 457
My query currently has a Filtered Rows step of = Table.SelectRows(#"Changed Type", each ([Confirming Sales Rep] = "Spencer Farris")). I need to also include anything where [Not Sold Original Non Sale Reason Employee] = "Spencer Farris." I've tried a few variations of OR and commas, but can't get anything to work so I see everything of both filters.
Upvotes: 0
Views: 229
Reputation: 60389
From the UI:
[Confirming Sales Rep]
column and filter on "Spencer Farris"[Not Sold Original Non Sale Reason Employee]
and filter on "Spencer Farris"Advanced Editor
#"Filtered Rows"
step you will see an and
separating the two clauses.
and
to an or
Probably need something like:
#"Filtered Rows" = Table.SelectRows(#"Changed Type", each ([Confirming Sales Rep] = "Spence Farris") or ([Not Sold Original Non Sale Reason Employee] = "Spencer Farris"))
Upvotes: 1