Highlighting Rows with Unique Value within Duplicate Data

lp1937

New Member
Joined
Oct 19, 2016
Messages
1
Hi, I have a set of data and I need to be able to find a formula that looks at the prior rows and the highlight any changes. For example, Row 3, 5, and 6 will be highlighted here.

I tried using a helper formula to concatenate the columns and then a conditional formatting with a countifs > 1 formula, but that doesn't work as there is two John Doe values and I tried another conditional formatting with C2<>C3 but that doesn't work as Jane Doe will not mark a change.

Any help would be appreciated!

[TABLE="width: 500"]
<tbody>[TR]
[TD]John Doe[/TD]
[TD]Toyota[/TD]
[TD]2013[/TD]
[/TR]
[TR]
[TD]John Doe[/TD]
[TD]Toyota[/TD]
[TD]2013[/TD]
[/TR]
[TR]
[TD]John Doe[/TD]
[TD]Toyota[/TD]
[TD]2015[/TD]
[/TR]
[TR]
[TD]John Doe[/TD]
[TD]Toyota[/TD]
[TD]2015[/TD]
[/TR]
[TR]
[TD]John Doe[/TD]
[TD]Toyota[/TD]
[TD]2016[/TD]
[/TR]
[TR]
[TD]Jane Doe[/TD]
[TD]Toyota[/TD]
[TD]2013[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
How about this?

Excel 2016 (Windows) 32 bit
ABCD
John DoeToyota
John DoeToyota
John DoeToyotaChange
John DoeToyota
John DoeToyotaChange
Jane DoeToyotaChange

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
[TD="align: center"]1[/TD]

[TD="align: right"]2013[/TD]
[TD="align: right"][/TD]

[TD="align: center"]2[/TD]

[TD="align: right"]2013[/TD]

[TD="align: center"]3[/TD]

[TD="align: right"]2015[/TD]

[TD="align: center"]4[/TD]

[TD="align: right"]2015[/TD]

[TD="align: center"]5[/TD]

[TD="align: right"]2016[/TD]

[TD="align: center"]6[/TD]

[TD="align: right"]2013[/TD]

</tbody>
Sheet5

[TABLE="width: 85%"]
<tbody>[TR]
[TD]Worksheet Formulas[TABLE="width: 100%"]
<thead>[TR="bgcolor: #DAE7F5"]
[TH="width: 10px"]Cell[/TH]
[TH="align: left"]Formula[/TH]
[/TR]
</thead><tbody>[TR]
[TH="width: 10px, bgcolor: #DAE7F5"]D2[/TH]
[TD="align: left"]=IF(AND(A2=A1,B2=B1,C2=C1),"","Change")[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,912
Members
452,366
Latest member
TePunaBloke

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