Cannot get Constant to work in VBA Code

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,595
Office Version
  1. 2021
Platform
  1. Windows
I have the following code , but cannot get message "subscript out of range

Code:
 Const C As String = 2018.2019
sub Copy_Data

 Workbooks("Sales Comms." & d & ".xls").ActiveSheet.Range("D2").PasteSpecial Paste:=xlPasteValues
Workbooks("Sales Comms." & d & ".xls").ActiveSheet.Range("D2").PasteSpecial Paste:=xlPasteValues
end sub



It would be appreciated if someone could kindly assist me
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Your code refers to a variable d but this hasn't been assigned a value. Also, the name of the procedure implies you will be copying data, but both (identical) lines of code are just pasting.
 
Upvote 0
thanks for your input. I have amended my code and it is now working perfectly
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,325
Members
452,635
Latest member
laura12345

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