Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I'm trying to obtain the address of a cell using the Cell Function and the
Vlookup function. i.e. =Cell("address",vlookup(A2,A3:D20,4,False)) However, I get an error when I execute the function. Any suggestions? |
#2
![]() |
|||
|
|||
![]()
Why don't you try MATCH instead?
=MATCH(A2,A3:A20,0) will give you the row, relative to the range. For example, if the value in A2 is in A5, the MATCH function will return 2-5=3. Hope this helps and if it does please vote for this post. G.Morales "Spock" wrote: I'm trying to obtain the address of a cell using the Cell Function and the Vlookup function. i.e. =Cell("address",vlookup(A2,A3:D20,4,False)) However, I get an error when I execute the function. Any suggestions? |
#3
![]() |
|||
|
|||
![]()
Not possible using VLOOKUP, try
=CELL("address",INDEX(A3:D20,MATCH(A2,A3:A20,0),4) ) Regards, Peo Sjoblom "Spock" wrote: I'm trying to obtain the address of a cell using the Cell Function and the Vlookup function. i.e. =Cell("address",vlookup(A2,A3:D20,4,False)) However, I get an error when I execute the function. Any suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I find the contents of a cell using the "ADDRESS" function. | Excel Worksheet Functions | |||
Cell addressing using the content of another cell. | Excel Worksheet Functions | |||
Using result from ADDRESS function as a cell reference itself | Excel Worksheet Functions | |||
Passing Cell Address to Offset | Excel Worksheet Functions |