Is it possible to use a vlookup to find a find a value against a range of values.
Ex. If a car has 12,234 miles on it and you have a table that looks like this <=8000 +3%
<=16000 +4%
<=24000 +5%
Will a vlookup return the +3% value?
=IF(H6=1999,VLOOKUP(S6,MVP!$B$52:$C$58,2,FALSE),IF (H6=2000,VLOOKUP(S6,MVP!$B$59:$C$65,2,FALSE),IF(H6 =2001,VLOOKUP(S6,MVP!$B$66:$C$72,2,FALSE),"N/A")))
that is what I have so far. THe B column is = to the miles and the C column is = to the %.
S Column is where the miles are at.