Named cells

D

Dave Griffiths

How do I use a name of a cell rather than the R1C1 address.

I have tried
Range("Name") =
Range(Name) =

Thanks
 
B

Bob Phillips

Dave,

What happened when you tried

Range("Name") =

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
F

Frank Kabel

Hi Dave
normaly
Range("your_defined_name").value = x
should work. what result did you get?

Frank
 
D

Dave Griffiths

Bob said:
Dave,

What happened when you tried

Range("Name") =
Guess what guys, it works now. I thought it should.
Thanks for the quick response.
 
Top