Lookup a value, return the cell address containing that value

Plokimu77

Board Regular
Joined
Oct 1, 2014
Messages
138
Hello Forum,

I need help with a formula that will tell me in what cell was a value found.

I apologies that I cant create a table to display my request. (I am at work)


The value I am looking for is in cell A1
for example if it is the word apple.

I would like to have the formula in B1 and it will tell me
that the word apple is cell E45. (Row E contains the range I am looking thru)

Can someone please help. Thank you
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Great!!

Thank you..

What would I need to change if I needed to look on sheet2 column 1.

Thanks for the help!
 
Upvote 0
Hi,

Try this


=ADDRESS(MATCH(A1,Sheet2!A1:A100,0),1,4)


To help you adapt the formula let me explain.

A1 is the location of the value to find. The lookup value
Sheet2!A1:A100 is where to look for the value
0 Tells the formula to find only an exact match.
The above 2 lines work out the row part of the address

1 Represents column 1 for the address because we know it will be in column 1 because that's where we're looking.

4 tells the formula to return a relative address
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top