ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   button gets named range (https://www.excelbanter.com/excel-programming/278768-button-gets-named-range.html)

David Turner

button gets named range
 
Using XL2000, I use the following to grab a named range from one sheet and
paste it into another by clicking on one of several buttons:

Sub GetMeal()
Range(Mid(Application.Caller, 4)).Copy
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub

I now have a need to change the names of those ranges. I tried renaming one
of them as a test, and clicking the button that worked with the 'old' range
gives me an error - Method 'Range' of object '_Global' failed.

How to fix?

--
David

David Turner

button gets named range
 
David Turner wrote

Using XL2000, I use the following to grab a named range from one sheet
and paste it into another by clicking on one of several buttons:

Sub GetMeal()
Range(Mid(Application.Caller, 4)).Copy
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub

I now have a need to change the names of those ranges. I tried
renaming one of them as a test, and clicking the button that worked
with the 'old' range gives me an error - Method 'Range' of object
'_Global' failed.

How to fix?


Duh! Never mind. I forgot I had assigned cmd<rangename to each button.
Changing to cmd<newrangename fixed it.

--
David


All times are GMT +1. The time now is 04:53 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com