Mutiple lookup, Exact and closest.

raven_squire

Board Regular
Joined
Jan 13, 2013
Messages
99
Hello,

I have some data in a table that looks like this Text, float, Result 1, Result 2

I am hoping that someone can help with a formula that will lookup the row with the closest float where the text matches.
I would say it is a multiple criteria lookup where one criteria is an exact match while the other is the closest match.

Thanks
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hi

With
- the table in A:D
- the text you are looking in G2
- the float you are looking in H2

try for result 1:

=INDEX(C2:C100,MATCH(MIN(IF(A2:A100=G2,ABS(B2:B100-H2))),IF(A2:A100=G2,ABS(B2:B100-H2)),0))
This is an array formula, you have to confirm it with CTRL-SHIFT-ENTER.
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,269
Members
449,075
Latest member
staticfluids

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