lookup cell address rather than its value

ajlauten

New Member
Joined
Dec 7, 2022
Messages
6
Office Version
  1. 2016
Hello,

I am trying to find the cell location/address of a value in a large array. The formula below returns the value in that cell (40) but I would like to return its address ($E$3). How would I go about doing that?

=HLOOKUP(WaterFalls!C4,'Calcs&fixed data for plots'!D2:BE23,2,FALSE)
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
How about
Excel Formula:
=ADDRESS(2,MATCH(C4,'Calcs&fixed data for plots'!D2:BE2,0))
 
Upvote 0
How about
Excel Formula:
=ADDRESS(2,MATCH(C4,'Calcs&fixed data for plots'!D2:BE2,0))
this returned $B$2 instead of $E$3, I was able to get the row corrected by changing your formula to =ADDRESS(3,MATCH(C4,'Calcs&fixed data for plots'!D2:BE2,0)) but can seem to correct the column from B to E
 
Upvote 0
Oops, it should be
Excel Formula:
=ADDRESS(3,MATCH(C4,'Calcs&fixed data for plots'!A2:BE2,0))
 
Upvote 0
Solution
Try
Excel Formula:
=CELL("address",OFFSET('Calcs&fixed data for plots'!$D$3,0,MATCH(WaterFalls!C4,'Calcs&fixed data for plots'!$D$2:$BE$2,0)-1))
This gives result in the form of
'[Book4 (2).xlsx]Calcs&fixed data for plots'!$G$3
If you want only $G$3
Excel Formula:
=IFERROR(RIGHT(CELL("address",OFFSET('Calcs&fixed data for plots'!$D$3,0,MATCH(WaterFalls!C4,'Calcs&fixed data for plots'!$D$2:$BE$2,0)-1)),4),"")
 
Upvote 0
Why use volatile functions when they totally unnecessary?
 
Upvote 0

Forum statistics

Threads
1,214,621
Messages
6,120,563
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