Help! Formula to find the address of particular value in sheet

X

xcelion

Hi All,

Iam a excel newbie.I want to know is there any formula avaliable to
find the address of particular value in sheet.For eg if there is value
"Mark" in some cells in sheet i want to find the address of that
cell.Is it possible through formula or do i have to write UDF ?

Thanks in advance
Xcelion
 
M

mangesh_yadav

To find the address, you need to know which cell the value "mark" is in
If you know that (and assuming it is C4), then use:

=CELL("address",C4)

If you use some formula then use:
=ADDRESS(MATCH("mark",C:C),3)
here, we know before hand that "mark" lies in column C and so use 3
and match "mark" in column C to get the row number. You could revers
it for unknown column position, and a known row.


Manges
 
X

xcelion

Hi Mangesh
Thanks for your help.I really solved my issue and save me a lot of
time :)

Thanks
Xcelion
 

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