I am trying to compare two columns in excel with the same unique identifier and highlight the cell if it is different:
[TABLE="width: 484"]
<colgroup><col><col><col><col span="2"><col><col></colgroup><tbody>[TR]
[TD]Unique[/TD]
[TD]Description[/TD]
[TD]Date[/TD]
[TD][/TD]
[TD]Unique[/TD]
[TD]Description[/TD]
[TD]Date[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Test[/TD]
[TD]10/1/2018[/TD]
[TD][/TD]
[TD]126[/TD]
[TD]Test[/TD]
[TD]10/5/2018[/TD]
[/TR]
[TR]
[TD]124[/TD]
[TD]Test[/TD]
[TD]10/2/2018[/TD]
[TD][/TD]
[TD]123[/TD]
[TD]Test[/TD]
[TD]10/2/2018[/TD]
[/TR]
[TR]
[TD]125[/TD]
[TD]Test[/TD]
[TD]10/1/2018[/TD]
[TD][/TD]
[TD]124[/TD]
[TD]Test[/TD]
[TD]10/2/2018[/TD]
[/TR]
[TR]
[TD]126[/TD]
[TD]Test[/TD]
[TD]10/5/2018[/TD]
[TD][/TD]
[TD]125[/TD]
[TD]Test[/TD]
[TD]10/1/2018[/TD]
[/TR]
</tbody>[/TABLE]
In the above example I have 3 columns (Unique, Description, and Date) I am trying to compare the date on two separate sheets and highlight if they are different if the unique identifier matches.
[TABLE="width: 484"]
<colgroup><col><col><col><col span="2"><col><col></colgroup><tbody>[TR]
[TD]Unique[/TD]
[TD]Description[/TD]
[TD]Date[/TD]
[TD][/TD]
[TD]Unique[/TD]
[TD]Description[/TD]
[TD]Date[/TD]
[/TR]
[TR]
[TD]123[/TD]
[TD]Test[/TD]
[TD]10/1/2018[/TD]
[TD][/TD]
[TD]126[/TD]
[TD]Test[/TD]
[TD]10/5/2018[/TD]
[/TR]
[TR]
[TD]124[/TD]
[TD]Test[/TD]
[TD]10/2/2018[/TD]
[TD][/TD]
[TD]123[/TD]
[TD]Test[/TD]
[TD]10/2/2018[/TD]
[/TR]
[TR]
[TD]125[/TD]
[TD]Test[/TD]
[TD]10/1/2018[/TD]
[TD][/TD]
[TD]124[/TD]
[TD]Test[/TD]
[TD]10/2/2018[/TD]
[/TR]
[TR]
[TD]126[/TD]
[TD]Test[/TD]
[TD]10/5/2018[/TD]
[TD][/TD]
[TD]125[/TD]
[TD]Test[/TD]
[TD]10/1/2018[/TD]
[/TR]
</tbody>[/TABLE]
In the above example I have 3 columns (Unique, Description, and Date) I am trying to compare the date on two separate sheets and highlight if they are different if the unique identifier matches.