Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. for x = 4 to 3918
  2. if Instr(cells(x, 2), "LW") then
  3. numToFind = cells(x, 1)
  4. for y = 4 to 3918
  5. if cells(y, 1) = numToFind then
  6. cells(y, 1).entirerow.Interior.ColorIndex = 4
  7. end if
  8. next y
  9. end if
  10. next x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement