use vlookup or other to find the nearest values (<>) or interpola

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I get VLOOKUP to find ither the nearest value to the one being
searched for, or to interpolate between the two nearest values?
 
Hi Rodney

Use the Range_lookup value TRUE to return the highest figure lower than
your Lookup_value i.e.

if A1 = 1, A2 = 2, A3 = 4 then

=VLOOKUP(3,A1:A3,1,TRUE) will return "2" where 3 is not found and 2 is
the highest number not exceeding 3

Regards

Steve
 
But what if the we wanted to lookup 3.5... is there a way to get it to return
'4' since it is closer numerically?

Rodney
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top