I have 2 sheets (calculator & backupschedule) in the same file and i am transferring data to and fro between the sheets.
I am having trouble figuring out how to transfer a range of cells from the calculator sheet to the other.
My current VB code is :
Sheets("Calculator").Range("R3:R15").Copy Destination:=Sheets("BackupSchedule").Range("E8:E20")
but i get an #REF! error in the backupschedule sheet in the cells E8:E20.
I want to copy the cells in Column R, Row 3 through 15 (Cells: R3,R4,R5,etc) and then place them in column E rows 8 through 20 (Cells: E8,E9,E10, etc)
Can someone give me a hand with this please?