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

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
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,224,827
Messages
6,181,198
Members
453,022
Latest member
RobertV1609

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