Stephan
Member
Hello
Worksheet is searchable 1st column az with dynamic multi dependents, in other words data has 4 COMBO BOXES: I2, J2, K2 & L2
Valid data presented using FILTER FUNCTION in I22.

However the question, is correct FILTER FUNCTION to accomodate either 1 COMBO in I2, and/or 2 COMBO in J2, and/or 3 COMBO in K2, and/or 4 COMBO in L2.
Not sure how to combine these 4 cell statements into 1, perhaps there is a better/shorter method in XL2021, but so far these all need merging, that is combining together & display as DYNAMIC SPILL RANGE in I22
4 COMBO: =IF(I2<>0,(SORT(FILTER(A:F,(A:A=I2)*(IF(J2<>0,(B:B=J2)*(IF(K2<>0,(C:C=K2)*(IF(L2<>0,(D:D=L2),"hello"))))))))))
3 COMBO: =IF(I2<>0,(SORT(FILTER(A:F,(A:A=I2)*(IF(J2<>0,(B:B=J2)*(IF(K2<>0,(C:C=K2))))),"hello"))))
2 COMBO: =IF(I2<>0,(SORT(FILTER(A:F,(A:A=I2)*(IF(J2<>0,(B:B=J2))),"hello"))))
1 COMBO: =IF(I2="","",SORT(FILTER(A:F,(A:A=I2))))
Cheers Stephan
Worksheet is searchable 1st column az with dynamic multi dependents, in other words data has 4 COMBO BOXES: I2, J2, K2 & L2
Valid data presented using FILTER FUNCTION in I22.

However the question, is correct FILTER FUNCTION to accomodate either 1 COMBO in I2, and/or 2 COMBO in J2, and/or 3 COMBO in K2, and/or 4 COMBO in L2.
Not sure how to combine these 4 cell statements into 1, perhaps there is a better/shorter method in XL2021, but so far these all need merging, that is combining together & display as DYNAMIC SPILL RANGE in I22
4 COMBO: =IF(I2<>0,(SORT(FILTER(A:F,(A:A=I2)*(IF(J2<>0,(B:B=J2)*(IF(K2<>0,(C:C=K2)*(IF(L2<>0,(D:D=L2),"hello"))))))))))
3 COMBO: =IF(I2<>0,(SORT(FILTER(A:F,(A:A=I2)*(IF(J2<>0,(B:B=J2)*(IF(K2<>0,(C:C=K2))))),"hello"))))
2 COMBO: =IF(I2<>0,(SORT(FILTER(A:F,(A:A=I2)*(IF(J2<>0,(B:B=J2))),"hello"))))
1 COMBO: =IF(I2="","",SORT(FILTER(A:F,(A:A=I2))))
Cheers Stephan