Andrew has attended:
Excel VBA Intro Intermediate course
Offsets
When are offsets used?
RE: Offsets
Hi Andrew
Thank you for your question
The offset method of the range object is used to move to or otherwise identify a cell in a specific relative position to another cell.
For example
Range("A1").Offset(1,1).Select
selects the cell one row down and two columns across from cell "A1".
Regards
Stephen