Hi,
I would like to compare two cells in a worksheet. If cell T5 <> U5 then a message displays. I have VBA macro that handles this and its:
If Not IsEmpty(Range("U5").Value) Then
If (Range("T5").Value <> Range("U5").Value) Then MsgBox ("<Display message>")
End If
How do I continue this for the cells from T5 to T23 and U5 to U23?
Thanks for your help.
I would like to compare two cells in a worksheet. If cell T5 <> U5 then a message displays. I have VBA macro that handles this and its:
If Not IsEmpty(Range("U5").Value) Then
If (Range("T5").Value <> Range("U5").Value) Then MsgBox ("<Display message>")
End If
How do I continue this for the cells from T5 to T23 and U5 to U23?
Thanks for your help.