Address of named range

P

pcress

Is there any worksheet function that returns the address (text) of a named
range? I have used the paste list menu option but require a worksheet
function to return the address
 
F

Frank Kabel

Hi
for the 'first' cell of your range you could use
=CEL("address",your_range_name)
 
A

Aladin Akyurek

1.

=REPLACE(CELL("Address",(A1,List)),1,5,"")

where List is the named range of interest. The way the CELL() functio
behaves here is first reported by Harlan Grove.

2.

=CELL("Address",List)&":"&CELL("Address",INDEX(List,MATCH(2,1/(1-ISBLANK(List)))))

which must be confirmed with control+shift+enter instead of just wit
enter.

Obviously, [1] is more efficient/fast and also correct for the las
cell of List might be empty by intention.
 

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

Top