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"..


column 1 column 2column 3 column 4
A502012DS5DVB515ADS
A548494DS5DVB515ADS
A548494DS5DVB515ADS
A554781DS5DVB515ADS
H55667DS5DVB515ADS
00116445RESPULTRA FILL
00634615RESPEVERFLO
00634615RESPEVERFLO
00642965RESPEVERFLO
00642965RESPEVERFLO
00642965RESPEVERFLO
00642965RESPEVERFLO
00642965RESPEVERFLO
00642965RESPEVERFLO

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>

<colgroup><col><col><col><col></colgroup><tbody>
</tbody>


Thank You
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
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,214,833
Messages
6,121,868
Members
449,054
Latest member
juliecooper255

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