Counting formula

brooklyn2007

Board Regular
Joined
Nov 20, 2010
Messages
143
i have a long column of unique customers who many of them repeat themselves more than once. I need to find a formula to calculate the total number of these unique customers who have bought more than once. It does not matter if some of them bought two, three or infinite times. It has to calculate it as one repeat. Below is a example of the column and the result that should come, the formula is missing. Thanks

Excel Workbook
ABCDEFGH
1Find the total number of unique names that repeat more than once
2
3JohnAnswer3
4Jim
5TomFormula to use??????
6John
7John
8Ben
9George
10Jim
11Ken
12Ben
13John
14Tim
15Mike
16
17
Sheet1
 
Try this

=SUM(IF(FREQUENCY(IF(A3:A100<>"",MATCH("~"&A3:A100,A3:A100&"",0)),ROW(A3:A100)-ROW(A3)+1)>1,1))

Ctrl+Shift+Enter

M.


Yes Marchelo, this one is giving me the result I wanted. Thanks a lot :)

Excel Workbook
ABCDEFG
1Find the total number of unique names that repeat more than once
2*******
3John*Answer3***
4Jim******
5Tom*Formula to use3**
6John******
7John******
8Ben******
9George******
10Jim******
11Ken******
12Ben******
13John******
14Tim******
15Mike******
Sheet1
 
Upvote 0

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,224,592
Messages
6,179,786
Members
452,942
Latest member
VijayNewtoExcel

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