I am trying to create a code to iterate over an excel document. I want the macro to highlight all rows based on the value to the left of the cell I am checking. This is what I'm trying to say, but can't properly in code.
For x = 4 to 3918
if (x,2) contains the letters "LW" then
look at (x,1)
highlight all rows with value = (x,1) green
Please help, thank you.