Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I use the MIN function to return the smallest number that is greater
than 0? Thanks -- ELB |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this array formula:
=MIN(IF(A1:A100,A1:A10,"")) Array formulas must be entered with CTRL-SHIFT-ENTER instead of just Enter. If done properly, the formula should be enclosed in { }. HTH, Elkar "ELB" wrote: How can I use the MIN function to return the smallest number that is greater than 0? Thanks -- ELB |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's a non-array version (assumes all numbers are positive):
=SMALL(A1:A10,COUNTIF(A1:A10,0)+1) Biff "ELB" wrote in message ... How can I use the MIN function to return the smallest number that is greater than 0? Thanks -- ELB |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another alternative:
=SMALL(A1:A10, COUNTIF(A1:A10,0)+1) "ELB" wrote: How can I use the MIN function to return the smallest number that is greater than 0? Thanks -- ELB |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
mround function: is there a download for Excel 2002? | Excel Worksheet Functions | |||
average function in Excel 2002 | New Users to Excel | |||
Excel/Access 2002 sum function | Excel Worksheet Functions | |||
Where is DateDiff function in Excel 2002 ? | Excel Worksheet Functions | |||
The countif function in Excel 2002. | Excel Worksheet Functions |