Does anyone know if there is VBA code to highlight individual words that have changed in cells between 2 versions of the same sheet? I found code that highlights the whole cell where changes have been made (where the result sheet is named "Def" and the Original sheet is named "Abc") as follows :
Sub comparesheets()
For Each cl In Sheets("Def").UsedRange
If cl.Value <> Sheets("Abc").Cells(cl.Row, cl.Column) Then
cl.Font.Color = RGB(0, 0, 255)
End If
Next cl
End Sub
...But I would like to show the actual change in colour rather than the whole cell. e.g. if cell A1 on sheet "Abc" shows "Heathrow Gate 24" and A1 on sheet "Def" has been change to "Heathrow Gate 32", I want A1 on "Def" to show as "Heathrow Gate 32"
Any ideas?
Bookmarks