Searching though several columns and tables

ijhoeq

Board Regular
Joined
Jun 20, 2018
Messages
61
media%2Fb7c%2Fb7c68161-25a7-4a3c-9fd1-6f5aad15cd46%2Fphp4rKZw9.png

I need to fill the "Evaporator Temperature" column with temperatures (selected from the table on the right) that correspond to the System Refrigerant in cell K3. I can accomplish this using the formula

=INDEX(D$3:D$23,MATCH(A3,G$3:G$23,1))

But, I am constantly adding new refrigerants to the table and I need to have the "Evaporator Temperature" column update automatically when I enter a different system refrigerant into cell K3. With the formula above, I have to change the 'lookup_array' so that it corresponds the the correct refrigerant. Is there any way I can make the 'lookup_array' automatically switch to the corresponding refrigerant?
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Try changing the lookup array to this:

INDEX($E$3:$G$23,,MATCH($K$3,$E$2:$G$2,0))
 
Upvote 0
I've updated it to

=INDEX(D$3:D$23,MATCH($K$3,INDEX($E$3:$G$23,MATCH($K$3,$E$2:$G$2,0))))

and I get a #REF !
 
Upvote 0
You replace G$3:G$23 in your formula with what i put. Change nothing else and you should be fine.
 
Upvote 0

Forum statistics

Threads
1,215,521
Messages
6,125,303
Members
449,218
Latest member
Excel Master

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