Highlight Duplicates

PinkHinky

Board Regular
Joined
Jul 1, 2008
Messages
50
I have a list of over 3,000 patient names, addresses and phone numbers. What I need to do is have any duplicate names highlighted. The problem with this is there will be duplicates when it comes to the city, state and zip code and that's fine. The first cell containing the first and last name is B3, the next is B12 and it carries on every 9th cell with the last cell being B3045. Is there a way to identify duplicates only applying to these cells?
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I suggest you use a working column to extract very 9th data point, then look for dupes there

In row 1 of a new column put
=IF(MOD(ROW()-3,9)=0,B1,"")
and copy down to get the values for B3, B12, B21 etc with blanks for the other cells

Then use the standard dupe highlighting techniques (http://www.cpearson.com/excel/duplicates.aspx), or my dupe master addin http://www.experts-exchange.com/A_2123.html on the working column

Cheers

Dave
 
Upvote 0

Forum statistics

Threads
1,224,505
Messages
6,179,147
Members
452,891
Latest member
JUSTOUTOFMYREACH

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