D
David Turner
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?
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?