Find duplicate in row based on cell value.

bicSkylighter

New Member
Joined
Oct 15, 2019
Messages
2
I'm looking to highlight/identify duplicates in a row based on a common title (same) and am not sure of the direction to proceed.

Simple example:

There are two helpdesk title's and both are part of similar groups. I would like to identify all groups that "helpdesk" have in common. Then continue with each same title to find to find duplicates.

TitleGroup1Group2Group3Group4Group5Group6
HelpdeskHelpSupportemailtest
HelpdeskHelpSupportemailwebsite
DesktopHelpDesktopsupportwebsiteservertest
ManagerDesktopsupportwebsiteservermanager
ManagerHelpsupportemailmanager

<tbody>
</tbody>

I would be doing this for around 150 "title's" and couple hundred of groups.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Welcome to the MrExcel forum!

Assuming your range starts in cell A1 (the word "Title"), try this:

Select columns B:G. Click Conditional Formatting > New Rule > Use a formula > and enter:

=AND(SUMPRODUCT(($B$1:$G$10=B1)*($A$1:$A$10=$A1))>1,B1<>"")

Click Format... and choose a fill color. You'll need to change the ranges to match your sheet. I used columns B:G and rows 1:10, but change those to fit the range you're using.
 
Upvote 0
Thanks for the welcome Eric and thank you more for nailing the answer so quickly. Your solution worked perfectly.

Thank you!
 
Upvote 0

Forum statistics

Threads
1,214,403
Messages
6,119,308
Members
448,886
Latest member
GBCTeacher

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