Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
loc.formular1c1="=NamedRange1"
loc.formula = loc.value or loc.Value = Range("NameRange1").Value -- Regards, Tom Ogilvy "Gixxer_J_97" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
how about
range("a2").value=[namedrange1] -- Don Guillett SalesAid Software "Gixxer_J_97" wrote in message ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy contents of a named range to a section on working area | Excel Discussion (Misc queries) | |||
Named Range Links not working | Links and Linking in Excel | |||
My Dynamic Named Range isn't working | Excel Worksheet Functions | |||
Formula not working when letter A is used in a named range | Excel Discussion (Misc queries) | |||
Create named range for each column not working? | Excel Programming |