Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Number for the list
A1, B1,C1,D1,E1,F1 144,150,152,156,160,162 Input number in A10 155 I would like to select the number from the list, which number is just above 155 from the list? then return 156 in A9 which number is just below 155 from the list? then return 152 in A11 Does anyone know how to do it in excel? Thank you in advance Eric |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi!
Can the input number be 0? If so, what results would you expect? Are the series of numbers always in ascending order? Biff "Eric" wrote in message ... Number for the list A1, B1,C1,D1,E1,F1 144,150,152,156,160,162 Input number in A10 155 I would like to select the number from the list, which number is just above 155 from the list? then return 156 in A9 which number is just below 155 from the list? then return 152 in A11 Does anyone know how to do it in excel? Thank you in advance Eric |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The input number must be inside the range of the list.
Thank you Eric "Biff" wrote: Hi! Can the input number be 0? If so, what results would you expect? Are the series of numbers always in ascending order? Biff "Eric" wrote in message ... Number for the list A1, B1,C1,D1,E1,F1 144,150,152,156,160,162 Input number in A10 155 I would like to select the number from the list, which number is just above 155 from the list? then return 156 in A9 which number is just below 155 from the list? then return 152 in A11 Does anyone know how to do it in excel? Thank you in advance Eric |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
These formulas need to be entered as arrays. Use the key combo of
CTRL,SHIFT,ENTER: For the next lowest number: =IF(A10="","",IF(A10<=MIN(A1:F1),"No lower value",MAX(IF(A1:F1<A10,A1:F1)))) For the next highest number: =IF(A10="","",IF(A10=MAX(A1:F1),"No higher value",MIN(IF(A1:F1A10,A1:F1)))) Biff "Eric" wrote in message ... The input number must be inside the range of the list. Thank you Eric "Biff" wrote: Hi! Can the input number be 0? If so, what results would you expect? Are the series of numbers always in ascending order? Biff "Eric" wrote in message ... Number for the list A1, B1,C1,D1,E1,F1 144,150,152,156,160,162 Input number in A10 155 I would like to select the number from the list, which number is just above 155 from the list? then return 156 in A9 which number is just below 155 from the list? then return 152 in A11 Does anyone know how to do it in excel? Thank you in advance Eric |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you very much
Eric |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome!
Biff "Eric" wrote in message ... Thank you very much Eric |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Excel changing number formatting and source data in graphs on it's own!!! | Excel Discussion (Misc queries) | |||
In Excel 2000, How do you select the whole of a worksheet (Select. | Excel Discussion (Misc queries) | |||
Difference in number of Excel NewsGroups | Excel Discussion (Misc queries) | |||
Excel 97 Select Behavior | Excel Discussion (Misc queries) |