Hello,
I have the code below that searches for a value and colours the row. Could someone please adjust so that it only searches Column M.
Sub ColorRow()
Application.ScreenUpdating = False
Dim r As Range
For Each r In ActiveSheet.UsedRange
If LCase(r.Value) Like "*/*" Then
Range("A" & r.Row, "M" & r.Row).Interior.Color = 16764108
End If
Next
End Sub
Many Thanks
I have the code below that searches for a value and colours the row. Could someone please adjust so that it only searches Column M.
Sub ColorRow()
Application.ScreenUpdating = False
Dim r As Range
For Each r In ActiveSheet.UsedRange
If LCase(r.Value) Like "*/*" Then
Range("A" & r.Row, "M" & r.Row).Interior.Color = 16764108
End If
Next
End Sub
Many Thanks