Vlookup

  • Thread starter Thread starter Sadie
  • Start date Start date
S

Sadie

Hi-
Is there any way to have VLOOKUP return the next highest number, whe
no exact match is found? I need to be able to access both the lower
higher values for an entered temperature, so that I can interpolate th
result! Please help
 
Hi
a little bit kludgy but it should work:
Assumptions:
- your lookup list in in columns A:B (column B stores the value to be
retunred, col. A the lookup values)
- the data is sorted by A in ascending order
- The lookup criteria is in C1

Try the following
IF(ISNA(MATCH(C1,A1:A100,0)),INDEX(B1:B100,MATCH(C1,A1:A100)+1),VLOOKUP
(C1,A1:B100,2,0))
 

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

Similar Threads

VLOOKUP 1
Finding Cell above Using Vlookup 2
Vlookup selecting next highest value instead of equal or nearest l 3
Vlookup and return sheet name also 2
Lookup 3
Vlookup 6
vlookup 4
VLOOKUP 1

Back
Top