Vlookup for a range

montanaaggie

Board Regular
Joined
Nov 11, 2005
Messages
122
Office Version
  1. 365
Platform
  1. Windows
In column A, I have the numbers 1, 2, 3, 4 going down
In column D, I have the numbers .8, 1.1, 1.2, 1.3 going down
In column E, I have the numbers 5, 10, 15, 20 going down

In cell G1, I want to have a vlookup, looking for the value in column A and finding the appropriate match in column D. Right now the way vlookup works for 1 (Cell A1), is its going to bring back 5, because .8<1. I would like it to bring back 10 as the difference between 1.1-1 or .1 is less than 1-.8 or .2 Is there a way to modify my vlookup equation to do this.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
I'm not sure I undertand what you're trying to accomplish exactly but I can guess...

Vlookup rounds down to the next largest value if it doesn't find an exact match and you want it to find the closest match above or below. I dont' think this is possible with vlookup but something like this may work.

Code:
=INDEX($E$1:$E$15,MATCH(MIN(ABS($D$1:$D$15-A1)),ABS($D$1:$D$15-A1),0))

EDIT: I forgot to mention this is written as an array formula so you'll have to use Ctrl + Shift + Enter - Props to Barry Houdini
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,523
Messages
6,125,322
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