Need some help finding a formula in excel..

UHCoog

New Member
Joined
Aug 28, 2014
Messages
2
Hello Everyone,

I'm looking for a formula that can give me count total of certain criteria. Here is my table. I want to get a total count of how many "EVERFLO" I have excluding duplicates in column 1. So the total I would get is 2 "EVERFLO"..


[TABLE="width: 269"]
<colgroup><col><col><col><col></colgroup><tbody>[TR]
[TD][TABLE="width: 284"]
<colgroup><col><col><col><col></colgroup><tbody>[TR]
[TD]column 1 [/TD]
[TD]column 2[/TD]
[TD]column 3 [/TD]
[TD]column 4[/TD]
[/TR]
[TR]
[TD]A502012DS[/TD]
[TD]5[/TD]
[TD]DVB[/TD]
[TD]515ADS[/TD]
[/TR]
[TR]
[TD]A548494DS[/TD]
[TD]5[/TD]
[TD]DVB[/TD]
[TD]515ADS[/TD]
[/TR]
[TR]
[TD]A548494DS[/TD]
[TD]5[/TD]
[TD]DVB[/TD]
[TD]515ADS[/TD]
[/TR]
[TR]
[TD]A554781DS[/TD]
[TD]5[/TD]
[TD]DVB[/TD]
[TD]515ADS[/TD]
[/TR]
[TR]
[TD]H55667DS[/TD]
[TD]5[/TD]
[TD]DVB[/TD]
[TD]515ADS[/TD]
[/TR]
[TR]
[TD]0011644[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]ULTRA FILL[/TD]
[/TR]
[TR]
[TD]0063461[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0063461[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0064296[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0064296[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0064296[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0064296[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0064296[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
[TR]
[TD]0064296[/TD]
[TD]5[/TD]
[TD]RESP[/TD]
[TD]EVERFLO[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


Thank You
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Control+shift+enter, not just enter:
Rich (BB code):
=SUM(IF(FREQUENCY(IF($A$2:$A$15<>"",IF($C$2:$C$15="EVERFLO",
  MATCH($A$2:$A$15,$A$2:$A$15,0))),ROW($A$2:$A$15)-ROW($A$2)+1),1))
 
Upvote 0
Aladin has my great respect. He is a master in formulae and I learn alot from him, but allow my version with a slight difference.
=SUM(--(FREQUENCY(IF($B$3:$B$16<>"",IF($E$3:$E$16=$K$3,MATCH($B$3:$B$16,$B$3:$B$16,0))),ROW($C$3:$C$16)-ROW($C$3)+1)>0))
 
Upvote 0

Forum statistics

Threads
1,224,317
Messages
6,177,850
Members
452,810
Latest member
jeffrey0409

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