You may also find the OFFSET command of use.
Cells(myrow,mycol).offset(0,-4).Select
or
Selection.offset(0,-4).Select
would select the cell 4 to the left of the current cell.
If you have used a FIND command, then just tag .OFFSET(0, -4) on the end (prior to any select or other action) and you will be referring to the cell 4 to the left:
Cells.Find(What:="Bob", LookIn:=xlFormulas).Offset(0, -4).Activate
Note - if the above doesn't find "Bob" you will get an error. You may need error trapping.
Cheers, Rob.
Bookmarks