working with a named range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi all,

i'm looking to figure out how to use a named range and get its value into a
new cell, but not the reference, the actual value

ie

dim loc as range

loc.formular1c1="=NamedRange1"
will put the reference to where NamedRange1 points - and will change when
NamedRange1 changes. however i need the copy to be 'static'

any suggestions?

tia

J
 
loc.formular1c1="=NamedRange1"
loc.formula = loc.value

or

loc.Value = Range("NameRange1").Value
 

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