Hello

I've been struggling to find a solution to the following problem in various forums for quite sometime and I'm getting desperate...

I want to move the active cell by a value contained in a separate cell

e.g.

Instead of using the R and C format

ActiveCell.Offset(1, -15).Select

I would like for the cell to move x rows/columns depending what is in cell "E1" and "E2"


ActiveCell.Offset("E1", "E2").Select

I have tried various methods but still can't get this to work

Thank you for your help and time!