View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
David Turner David Turner is offline
external usenet poster
 
Posts: 50
Default 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