Forum Discussion
sslavin
8 years agoNew Member
How to conditionally filter a column in Power Query
I have a table in Excel I am extracting rows from user Power Query. I also have an input cell on the output worksheet where a user can enter a value to filter the results. I have successfully set th...
- 8 years ago
You can add a step with a condition like this:
if MyParameter <> null then PreviousFilteredStep else PrePreviousUnfilteredStep
ImkeF
Community Champion
8 years agoYou can add a step with a condition like this:
if MyParameter <> null then PreviousFilteredStep else PrePreviousUnfilteredStep