View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips[_3_] Bob Phillips[_3_] is offline
external usenet poster
 
Posts: 2,420
Default Storing a range variable in a cell

Just put someything like Sheet1!A1:M10 in the cell as use

Set myRange = Range(Worksheets("Sheet1").Range("A1").Value)

--
__________________________________
HTH

Bob

"Dreaded404" wrote in message
...
I am writing a VBA script and I need to frequently load and store a range
as
a long-term variable. How do I store an actual range as a variable so
that I
can have a function load it and save it? I need to do this because I am
using the Application.OnTime function and will need to call a subroutine
to
execute a complex series of actions.