View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default Getting the next higer value with Vlookup - True

Hi,

Try this array formula, the lookup value is in C1 and the lookup array is in
A1 - B10

=INDEX(B1:B10,MATCH(TRUE,A1:A10=C1,0))

This is an array formula which must be entered by pressing CTRL+Shift+Enter
'and not just Enter. If you do it correctly then Excel will put curly brackets
'around the formula {}. You can't type these yourself. If you edit the formula
'you must enter it again with CTRL+Shift+Enter.
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"getu32" wrote:

In VLookup / Hlookup function the True parameter gives the closest
match with the search value but less than the search value....

i want to get the next greatest values of the Search Value.... how to
do it....

Example .....

A B C
5 10 15
6 11 16
9 14 19

If i use =Vlookup(7,[Array],2,0)/
=Vlookup(7,Array],2,True) ....
the answer is get is 11

BUT how to get it as 14!!!???

Please reply me at :
.