Power Query filter using If statement

olliehunt

New Member
Joined
Jul 15, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi,

I'm trying to apply a parameter to a filter in my dataset to filter the country. I've got that working so the parameter set to 1 filters for country 1 etc.

Ideally I'd like to have a parameter value that selects all. For example, 1 is country 1, 2 is country 2, 3 is country 3 but 9999 clears the filter to allow all countries. I'm not sure of the syntax for putting an If statement in there. Something like:
Table.SelectRows(#Source, If COUNTRY = 9999 then nofilter Else each ([Country] = COUNTRY"))

Any ideas?

Thanks in advance!
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
You should be able to do something like this:

Power Query:
Table.SelectRows(#Source, each (if COUNTRY = 9999 then true else [Country] = COUNTRY))
 
Upvote 0
Solution

Forum statistics

Threads
1,223,705
Messages
6,173,986
Members
452,541
Latest member
haasro02

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top