Hi
I am trying to select a range of cells offset from the active cell with the following procedure.
This is not working. Please will someone show me where I am going wrong. Any help will be much appreciated.
Thanks ,
Rob.
I am trying to select a range of cells offset from the active cell with the following procedure.
Code:
Sub CopyRTD()
Dim rtd As Range
Set rtd = Range(ActiveCell.Offset(0, 17), ActiveCell.Offset(0, 17).End(xlToRight))
Sheets("Volume and MA Analysis").Select
Range("aa10").Activate
rtd.Select
End Sub
Thanks ,
Rob.