Count unique text in colA with criteria in colB and colC

yerffejqwerty

New Member
Joined
Jun 15, 2016
Messages
1
Hello,

In column A I have animal names, some are duplicates.
In column B, each animal name has a different total value
In column C, each animal name has a percentage.

DOG...........50.....5%
CAT...........100....0.06%
CAT...........250....10%
MOUSE.......3.......1%
BIRD..........75......0.7%
DOG..........8........3%

I need a formula that will count unique animal names remaining after applying 2 criteria. Criteria 1: total value is above 10, criteria 2: percentage is above 2%.

Thanks!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
maybe something like...

A9=SUM(IF(FREQUENCY(IF(A2:A7<>"",IF(B2:B7>10,IF(C2:C7>0.02,MATCH(A2:A7,A2:A7,0)))),ROW(A2:A7)-ROW(A2)+1),1)) control shift enter

Row\Col
A​
B​
C​
1​
NameValuePercentage
2​
DOG
50​
5%​
3​
CAT
100​
6%​
4​
CAT
250​
10%​
5​
MOUSE
3​
1%​
6​
BIRD
75​
7%​
7​
DOG
8​
3%​
8​
9​
3​

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,647
Messages
6,126,005
Members
449,279
Latest member
Faraz5023

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