Conditional formatting for multiple duplicate cells

zombiemaster

Board Regular
Joined
Oct 27, 2009
Messages
241
So management has this spreadsheet ... sounds like the beginning of a really bad joke, right?

But it's true.

We have a spreadsheet with hundreds of rows of call details. Date, name, policy number, caller name, etc. They want to know if there has been calls regarding the same policy previously, by highlight the policy number if it's a "duplicate call". I am not great at conditional formatting, so this forum is the first place I thought of for help...

We have Last Name in column D First Name in column E and Policy Number in column F. If all three of those are duplicated in the rows above, they want all those rows to highlight the policy number in column F.

Any help is appreciated, and feel free to add your own bad jokes!

~ZM~
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hi Zombiemaster,

In its simplest form this would highlight all duplicates but of course they'd all be highlit with the same format.

You may want to consider adding a column with just
Excel Formula:
=COUNTIFS($D$2:$D$9999,D2,$E$2:$E$9999,E2,$F$2:$F$9999,F2)
so you can see how many calls have all three matched.

Book1
DEF
1Last NameFirst NamePolicy No.
2SmithJoe27
3SmithJim33
4JonesSue66
5SmithJames55
6SmithSue66
7JonesJim77
8JonesJames55
9JonesSue66
10JonesJim77
11JonesJim88
12
13
14
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
F2:F9999Expression=COUNTIFS($D$2:$D$9999,D2,$E$2:$E$9999,E2,$F$2:$F$9999,F2)>1textNO
 
Upvote 0
Solution

Forum statistics

Threads
1,214,553
Messages
6,120,184
Members
448,949
Latest member
keycalinc

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