Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
i have a range say A1:A100 containing numbers and i have a number in a cell say B1, what i want to do is to have smillest number in the range A1:A100 that is bigger than the number that i have in B1, i tried the formula below as an array formula but it does not work =MIN(A1:A100B1) any help would be appreciatd. Thanks, -- Farhad Hodjat |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The formula A1:A100B1 returns either TRUE or FALSE. Thus, when placed in
the MIN function, only 0 or 1 would be returned. Try including an IF statement to filter out numbers less than B1. =MIN(IF(A1:A10B1,A1:A10,"")) Entered as an array formula. HTH, Elkar "Farhad" wrote: Hi, i have a range say A1:A100 containing numbers and i have a number in a cell say B1, what i want to do is to have smillest number in the range A1:A100 that is bigger than the number that i have in B1, i tried the formula below as an array formula but it does not work =MIN(A1:A100B1) any help would be appreciatd. Thanks, -- Farhad Hodjat |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way (array-entered):
=MIN(IF(A1:A100B1, A1:A100)) In article , Farhad wrote: Hi, i have a range say A1:A100 containing numbers and i have a number in a cell say B1, what i want to do is to have smillest number in the range A1:A100 that is bigger than the number that i have in B1, i tried the formula below as an array formula but it does not work =MIN(A1:A100B1) any help would be appreciatd. Thanks, |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=MIN(IF(A1:A100B1,A1:A100))
-- Don Guillett Microsoft MVP Excel SalesAid Software "Farhad" wrote in message ... Hi, i have a range say A1:A100 containing numbers and i have a number in a cell say B1, what i want to do is to have smillest number in the range A1:A100 that is bigger than the number that i have in B1, i tried the formula below as an array formula but it does not work =MIN(A1:A100B1) any help would be appreciatd. Thanks, -- Farhad Hodjat |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
array formula q | Excel Discussion (Misc queries) | |||
meaning of : IF(Switch; Average(array A, array B); array A) | Excel Worksheet Functions | |||
Array formula | Excel Discussion (Misc queries) | |||
Array Formula - using LEFT("text",4) in formula | Excel Worksheet Functions | |||
Array formula help | Excel Discussion (Misc queries) |