Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() I need a formula to show the lowest figure, but not 0 in an excel spreadsheet. Can anyone help???!! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need a formula to show the lowest figure,
but not 0 in an excel spreadsheet. Something like this, in say B1, with the formula confirmed via CTRL+SHIFT+ENTER: =MIN(IF(A1:A100,A1:A10)) -- Max Singapore http://savefile.com/projects/236895 Downloads:19,500 Files:362 Subscribers:62 xdemechanik --- |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
For the OP's benefit, if you just wanted to exclude zero (and not exclude
negative values), Max's formula would become =MIN(IF(A1:A10<0,A1:A10)) whereas if you wanted only to use numbers greater than 1 (as in your subject line), it would become =MIN(IF(A1:A101,A1:A10)) -- David Biddulph "Max" wrote in message ... Something like this, in say B1, with the formula confirmed via CTRL+SHIFT+ENTER: =MIN(IF(A1:A100,A1:A10)) "Kendo" wrote in message ... I need a formula to show the lowest figure, but not 0 in an excel spreadsheet. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Do you want the minimum number in a range excluding zero?
If yes then copy this in a cell =MIN(IF(A1:A100=0,"",A1:A100)) and press CTRL-SHIFT-ENTER Adjust 100 to the last row in your data set. "Kendo" wrote: I need a formula to show the lowest figure, but not 0 in an excel spreadsheet. Can anyone help???!! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
To exclude 0's and negatives, you could try:
=Small(A1:A50,1+Countif(A1:A50,0)) -- HTH, RD ================================================== === Please keep all correspondence within the Group, so all may benefit! ================================================== === "Kendo" wrote in message ... I need a formula to show the lowest figure, but not 0 in an excel spreadsheet. Can anyone help???!! |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Kendo wrote...
I need a formula to show the lowest figure, but not 0 in an excel spreadsheet. So smallest positive? That'd mean 0, but your subject line says 1. This can be done in general without array formulas as =SMALL(range,COUNTIF(range,"<="&x)+1) which returns the smallest value in range greater than x. That said, the array formula =MIN(IF(rangex,range)) is more efficient - faster recalc, uses fewer resources. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lowest number in a row that is greater than zero | Excel Discussion (Misc queries) | |||
lowest number in a row that is greater than zero | Excel Discussion (Misc queries) | |||
determine lowest number in several columns and replace lowest numb | Excel Worksheet Functions | |||
Adding a figure + a percentage after using lesser than or greater | Excel Discussion (Misc queries) | |||
How can I get the lowest price, second lowest etc. from a range o. | Excel Worksheet Functions |