Guzzlr
Well-known Member
- Joined
- Apr 20, 2009
- Messages
- 982
- Office Version
- 2021
- Platform
- Windows
Code:
For Each Cl In Range("C2", Range("C" & Rows.Count).End(xlUp))
If Not IsError(Application.Match(Cl.Value, Columns(2), 0)) Then _
Cl.EntireRow.Interior.ColorIndex = 28
The above code is working well. My question that I'm not entirely sure about, what "C2" is for?
I don't believe it to be Column 2, because that is already defined by Columns(2),0)).
Thanks for the help