Hi,
I have 2 columns and im trying to check if column 1 has all the data included from column 2.
How would i carry out the check.
thanks
Hi,
I have 2 columns and im trying to check if column 1 has all the data included from column 2.
How would i carry out the check.
thanks
Hi Melville,
One way ....
![]()
Sub tester() Dim cel As Range For Each cel In Range("A1", Cells(Rows.Count, "A").End(xlUp)) If Not cel.Value Like cel.Offset(0, 1).Value Then cel.Offset(0, 1).Interior.Color = vbRed End If Next End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks