Finding Names associated with a cell
Perhaps I should have been clearer, but I assumed associated meant the
entire range encompassed by the named range.
Example:
? selection.Name.Name
NameA1D4
? selection.Address
$A$1:$D$4
And selecting only A1 in the above situation would raise an error. Also,
to be more general, if no name is assigned to the selected range, an error
would also be raised for Selection.Name.Name.
--
Regards,
Tom Ogilvy
"Myrna Larson" wrote in message
...
Hi, Tom:
If the range A1:D4 is named, but A1 by itself does not have a name, won't
this
produce an error?
Myrna Larson
PS: Somehow (don't know why right now), I thought he meant that a given
cell
was part of several named ranges. That's why I suggested a loop.
On Mon, 9 Aug 2004 22:19:29 -0400, "Tom Ogilvy" wrote:
Range("A1").Name.Name
will give you the name associated with A1 if it has one.
|