Cell address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to do something like Offset(vlookup(a1,range,1,false),1,1). However I want the lookup function to return the cell address instead of the value. Any suggestions?

TIA

Tasha
 
=CELL("address",INDEX(range,match(a1,range,0)))

--
For everyone's benefit keep the discussion in the newsgroup.

Regards,

Peo Sjoblom


Tasha said:
I want to do something like Offset(vlookup(a1,range,1,false),1,1). However
I want the lookup function to return the cell address instead of the value.
Any suggestions?
 
It looks like you want to find the value of A1 in your
range and then return the address of the cell that is 1
column to the right and 1 row below it:

=ADDRESS(MAX(ISNUMBER(FIND(A1,rng))*ROW(rng))+1,MAX
(ISNUMBER(FIND(A1,rng))*COLUMN(rng))+1,4)

Array-entered, meaning press ctrl/shift/enter.

HTH
Jason
Atlanta, GA
-----Original Message-----
I want to do something like Offset(vlookup
(a1,range,1,false),1,1). However I want the lookup
function to return the cell address instead of the value.
Any suggestions?
 

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

Back
Top