hi,
i wrote a code to check cells in range. if the cells not match then color it in yellow.
i need help just to ad to the code the order to color the code. here is the code:
Sub checkcells()
Dim cell As Range
Dim x As Range
For Each cell In Range("a1:a2")
For Each x In Range("c1:c2")
If cell <> x Then
__________
End If
Next x
Next cell
End Sub
i wrote a code to check cells in range. if the cells not match then color it in yellow.
i need help just to ad to the code the order to color the code. here is the code:
Sub checkcells()
Dim cell As Range
Dim x As Range
For Each cell In Range("a1:a2")
For Each x In Range("c1:c2")
If cell <> x Then
__________
End If
Next x
Next cell
End Sub