Thread: Cell name
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
K Dales[_2_] K Dales[_2_] is offline
external usenet poster
 
Posts: 1,163
Default Cell name

ActiveCell.Name.Name
(yeah, weird but that's the way it goes!)
--
- K Dales


"Kevin" wrote:

If I name cell A1 "blah".
and then select that cell.
I need a macro to make activecell.offset(1,0)=activell.name.

When I do it like this it returns the range name not the name I assigned to
A1.

Any suggestions?