hlookup automatically change 1st line in the table array

stebrownsword

Board Regular
Joined
Apr 16, 2010
Messages
151
Hi
My formula is =HLOOKUP($D48,Directorate!D$52:D$350,3,FALSE)

As you are aware for this HLOOKUP formula to work the infofrom Cell D48 must be on the line D52 (in the table array source), to bring back the 3rdrow values.

However I would like to drag this formula this down (as Ihave 600 different values to find, then to bring the 3rd rowinformation back. At the moment I’m having to manually type the formula foreach one.
Is there a way to change the table array “Directorate!D$52:D$350”to “Directorate!D$XX:D$350” -the XX will be decided by the value in cell A48 for example?



 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
A48 or D48?
You have D48 in your formula but A48 doesnt appear anywhere else.
Change the formula for whichever one you decide is correct.

Looks like you need to use INDIRECT.
INDIRECT is not an efficient formula when there are many of them.
Anyway try this

=HLOOKUP($D48,INDIRECT("Directorate!D$"&$A48&":D$350"),3,FALSE)
 
Upvote 0

Forum statistics

Threads
1,214,516
Messages
6,119,979
Members
448,934
Latest member
audette89

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