Dynamic filters

VickiS

New Member
Joined
Dec 12, 2024
Messages
2
Office Version
  1. 365
Platform
  1. MacOS
Hello, I have created dynamic filters to present one set of results from a data set. I have 3 filters, currently the results are only generated when there is a selection in all 3 filters. But I would like the results to be generated even when there is just one filter populated. So for example, if filter 2 & 3 are blank, still present results of filter 1. Or if filter 3 is blank, I would still want the filter 1 & 2 results to show.
Current formula I am using that is giving me the results for all 3 filters when they all have values:
=FILTER('All sequences data'!$A$2:$E$36,('All sequences data'!$B2:$B36=B10)*('All sequences data'!$C2:$C36=D10)*('All sequences data'!$D2:$D36=F10))
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi & welcome to MrExcel.
How about
Excel Formula:
=FILTER('All sequences data'!$A$2:$E$36,(if(b10="",1,'All sequences data'!$B2:$B36=B10))*(if(d10="",1,'All sequences data'!$C2:$C36=D10))*(if(f10="",1,'All sequences data'!$D2:$D36=F10)))
 
Upvote 0
Solution
Hi & welcome to MrExcel.
How about
Excel Formula:
=FILTER('All sequences data'!$A$2:$E$36,(if(b10="",1,'All sequences data'!$B2:$B36=B10))*(if(d10="",1,'All sequences data'!$C2:$C36=D10))*(if(f10="",1,'All sequences data'!$D2:$D36=F10)))
This seems to have done it! Thank you so much - so happy to have found this forum
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,224,752
Messages
6,180,743
Members
452,996
Latest member
nelsonsix66

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