Modify filter function to include multiple criteria

Anglais428v2

New Member
Joined
Jun 19, 2020
Messages
27
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have a formula that works:
=COUNTA(UNIQUE(FILTER(Country,ISNUMBER(MATCH(Sector,{"A","B"},0)))))

I want to add a further criteria search (i.e. effectively copying what is being performed in the ISNUMBER(MATCH(Sector,{"A","B"},0) part but for a different column (Industry) and different search criteria (C and D, instead of A and B)
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Do both columns need to match or either one?
 
Upvote 0
Both columns need to match. So i was thinking something like the below, but it isn't working:
=COUNTA(UNIQUE(FILTER(Country,ISNUMBER(MATCH(Sector,{"A","B"},0)))*FILTER(Country,ISNUMBER(MATCH(Industry,{"C","D"},0)))))
 
Upvote 0
Ok, how about
Excel Formula:
=ROWS(UNIQUE(FILTER(Country,(ISNUMBER(MATCH(Sector,{"A","B"},0)))*(ISNUMBER(MATCH(Industry,{"C","D"},0))))))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,329
Messages
6,124,302
Members
449,150
Latest member
NyDarR

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