Subscript out of range error

claudehollett

Board Regular
Joined
Dec 11, 2003
Messages
89
The following code is attempting to copy from range AB5:AZ7 and past it to another sheet begining in range AB1. I am getting a Subscript out of range error. Can someone tell me why. Or if you know code for a better way to make this copy will you please inform me. Thanks, Claude

Sub SeniorApprover()
Sheets("Master").Range("AB5:AZ7").Copy Destination:=Sheets("Master2").Range("AB1")
End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Claude

That's the about the best/shortest way to do the copy.:)

Have you checked the sheet names?

Are both sheets in the same workbook?
 
Upvote 0
Hi,

if your sheets do really exist, check if the workbook with those sheets is active when your code is running
else refer to the workbook
example
Code:
Dim WB As Workbook
Set WB = ThisWorkBook
WB.Sheets("Master").Range("AB5:AZ7").Copy WB.Sheets("Master2").Range("AB1")
kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,214,822
Messages
6,121,767
Members
449,049
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top