Captain_Conman
Board Regular
- Joined
- Jun 14, 2018
- Messages
- 54
This is probably a stupid question...
While looping through column A, if a certain condition is met, I would like to copy the active row, and the row below it.
What is the best way to write this?
While looping through column A, if a certain condition is met, I would like to copy the active row, and the row below it.
Code:
c.EntireRow.Copy AND c.Offset(1, 0).EntireRow.Copy
What is the best way to write this?