Thread: Naming Ranges
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Naming Ranges

Be careful with names that look too much like addresses, too.

A1 wouldn't work as a range name (while in A1 Reference style).

PCLIVE wrote:

Thanks,

I had just figured this out when you responded. However, I had orginally
been using a cobination of letters with numbers and the letters were in
front. I was still getting the error then, so I shortend the name to make
the inquiry simpler. After discovering that the name could not begin with a
number, I then realized that my original problem was caused by a space in
the cell value. Since Excel automatically substitutes spaces with
underscores when you manually create the named range, I did not notice that
this was the happening when trying to apply the same thing via VBA. Anyway,
it's working now.

Thanks,
Paul

"Peter T" <peter_t@discussions wrote in message
...
The error description is the answer!

Regards,
Peter T

PS defined names starting with a numeral are not valid


"PCLIVE" wrote in message
...
Forgot to mention, the error is:

Run-time error '1004'"

Thant name is not valid.


Thanks,
Paul

"PCLIVE" wrote in message
...
I'm having trouble naming a range with this code.
B1 to D7 is selected.
r1 = 1
A1 = "950"
Why isn't this working?

ActiveWorkbook.Names.Add Name:=Range("A" & r1).Value,
RefersTo:=Selection.Address


Thanks.






--

Dave Peterson