CountIF Unique Terms + Condition

m99jones

New Member
Joined
Jan 9, 2019
Messages
1
Hi -
Hoping you can help with the following excel formula challenge:
I am trying to do a count if of unique names given one criteria
The sample data set is below
I am trying to come up with a formula that shows for Europe I have 1 unique name; For Asia I would get a unique count of 2 unique names.
Any ideas?
Thanks...

Name 1 -> Europe
Name 2 -> Asia
Name 1 -> Europe
Name 3 -> Asia
Name 3 -> Asia
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi,

With your data located in range A2:B6

You can test following Array Formula :

Code:
=SUM(--(FREQUENCY(IF(B2:B6="Asia",MATCH(A2:A6,A2:A6,0)),ROW(A2:A6)-ROW(A2)+1)>0))

Hope this will help
 
Upvote 0

Forum statistics

Threads
1,215,378
Messages
6,124,603
Members
449,174
Latest member
ExcelfromGermany

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