Option Explicit
Sub Macro1()
Dim lngLastRow As Long
Dim lngMyRow As Long
Application.ScreenUpdating = False
lngLastRow = Cells(Rows.Count, "A").End(xlUp).Row
'Works backwards from the last Row in Col. A to Row 2. Change to suit.
For lngMyRow = lngLastRow To 2 Step -1
If Val(Range("A" & lngMyRow)) - 1 <> Val(Range("A" & lngMyRow - 1)) Then
Range("A" & lngMyRow).Interior.Color = RGB(255, 255, 0)
Else
Range("A" & lngMyRow).Interior.Color = xlNone
End If
Next lngMyRow
Application.ScreenUpdating = True
End Sub