Named cells

  • Thread starter Thread starter Dave Griffiths
  • Start date Start date
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
 
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)
 
Depends what you are trying to do

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

Frank
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top