Hi all,
I'm having trouble in getting the range that a name(dynamic range) refers to. I want the range so I can then go Range.select
why does this not work?
If I use
I get the formula (=offset......) only
"Data" is actually "SlowDown!Data"
Also, what is the difference between select and activate?
as in worksheets("aa").select doesn't seem to be different from .activate
I'm having trouble in getting the range that a name(dynamic range) refers to. I want the range so I can then go Range.select
why does this not work?
Code:
MsgBox (Workbooks("Gap").Worksheets("SlowDown").Names("Data").RefersToRange)
If I use
Code:
MsgBox (Workbooks("Gap").Worksheets("SlowDown").Names("Data").RefersTo)
I get the formula (=offset......) only
"Data" is actually "SlowDown!Data"
Also, what is the difference between select and activate?
as in worksheets("aa").select doesn't seem to be different from .activate