Count the occurance of a duplicate in a column using structured references

sspatriots

Well-known Member
Joined
Nov 22, 2011
Messages
585
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have a table with the name "JobList". I have column that list a boat load of e-mails, and many are duplicates. That column name is "Contact Email Address". To find the actual occurrence number of the duplicates I was trying to do it two different ways. The first column formula (below) will count the number of duplicates for any email address in that column I just mentioned. The formula is as follows:

Excel Formula:
=COUNTIF([Contact Email Address], [@[Contact Email Address]])

Therefore, I tried this next formula to try and get the occurrence number of the duplicates from that same column:

Excel Formula:
=COUNTIF(JobList[@[Contact Email Address]:[Contact Email Address]],[@[Contact Email Address]])

However, that just put the number "1" in every cell down that column.

If an e-mail address shows up 5 times down that "Contact Email Address" column, would like the formula result to read "1" in the new column when the initial e-mail address appears in that column from top to bottom, then the second time that same e-mail address appears in that column I would like the formula result to read "2", then "3", then "4" and so on.

I have no clue how to do this using the structured references. Thanks, SS
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Try:
Excel Formula:
=COUNTIF(INDEX([Contact Email Address],1):[@[Contact Email Address]],[@[Contact Email Address]])
 
Upvote 0
Solution
try removing the @ symbol:

Excel Formula:
       =COUNTIF(JobList[[Contact Email Address]:[Contact Email Address]],[@[Contact Email Address]])
 
Upvote 0

Forum statistics

Threads
1,223,867
Messages
6,175,063
Members
452,611
Latest member
bls2024

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