+ Reply to Thread
Results 1 to 10 of 10

lowest number above 0

  1. #1
    One-Leg
    Guest

    lowest number above 0

    Hello,

    If I have a list of numbers in colum "A".

    A1: 10
    A2: 20
    A3: 00
    A4: 15
    A5: 50

    An I want to see in cell C2 what is the lowest number in colum that is above
    0 (in this case, it would be "10"). What do I need to put in cell C2???

    Thanks!!!

  2. #2
    Peo Sjoblom
    Guest

    Re: lowest number above 0

    =SMALL(A1:A5,COUNTIF(A1:A5,0)+1)

    --
    Regards,

    Peo Sjoblom


    "One-Leg" <[email protected]> wrote in message
    news:[email protected]...
    > Hello,
    >
    > If I have a list of numbers in colum "A".
    >
    > A1: 10
    > A2: 20
    > A3: 00
    > A4: 15
    > A5: 50
    >
    > An I want to see in cell C2 what is the lowest number in colum that is
    > above
    > 0 (in this case, it would be "10"). What do I need to put in cell C2???
    >
    > Thanks!!!



  3. #3
    One-Leg
    Guest

    Re: lowest number above 0

    The formula given bellow doesn't work...

    "Peo Sjoblom" wrote:

    > =SMALL(A1:A5,COUNTIF(A1:A5,0)+1)
    >
    > --
    > Regards,
    >
    > Peo Sjoblom
    >
    >
    > "One-Leg" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello,
    > >
    > > If I have a list of numbers in colum "A".
    > >
    > > A1: 10
    > > A2: 20
    > > A3: 00
    > > A4: 15
    > > A5: 50
    > >
    > > An I want to see in cell C2 what is the lowest number in colum that is
    > > above
    > > 0 (in this case, it would be "10"). What do I need to put in cell C2???
    > >
    > > Thanks!!!

    >
    >


  4. #4
    Michael
    Guest

    Re: lowest number above 0

    Works fine for me!!
    Can you let us know what error you are getting
    Regards
    Michael
    --
    Michael Mitchelson


    "One-Leg" wrote:

    > The formula given bellow doesn't work...
    >
    > "Peo Sjoblom" wrote:
    >
    > > =SMALL(A1:A5,COUNTIF(A1:A5,0)+1)
    > >
    > > --
    > > Regards,
    > >
    > > Peo Sjoblom
    > >
    > >
    > > "One-Leg" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > Hello,
    > > >
    > > > If I have a list of numbers in colum "A".
    > > >
    > > > A1: 10
    > > > A2: 20
    > > > A3: 00
    > > > A4: 15
    > > > A5: 50
    > > >
    > > > An I want to see in cell C2 what is the lowest number in colum that is
    > > > above
    > > > 0 (in this case, it would be "10"). What do I need to put in cell C2???
    > > >
    > > > Thanks!!!

    > >
    > >


  5. #5
    One-Leg
    Guest

    Re: lowest number above 0

    when I copy/paste the formula "=SMALL(A1:A5,COUNTIF(A1:A5,0)+1)" in cell C2,
    I get the following error messgae:

    =========================
    The formula you typed contains an error.

    - For information about fixing common formula problems, click Help.
    - To get assistance in entering a function, click OK, then Function on the
    Insert menu.
    - If you are not trying to enter a formula, avoid using an equal sign (=) or
    minus sign (-), or precede it with a single quotations mark(').
    =========================

    If I then click on OK, "A5,COUNTIF" is highlited as if something was wrong
    there...

    I figured out the problem... between A5 and COUNTIF, I need to put ";" and
    not ",". Same thing between A5 and 0.

    "Michael" wrote:

    > Works fine for me!!
    > Can you let us know what error you are getting
    > Regards
    > Michael
    > --
    > Michael Mitchelson
    >
    >
    > "One-Leg" wrote:
    >
    > > The formula given bellow doesn't work...
    > >
    > > "Peo Sjoblom" wrote:
    > >
    > > > =SMALL(A1:A5,COUNTIF(A1:A5,0)+1)
    > > >
    > > > --
    > > > Regards,
    > > >
    > > > Peo Sjoblom
    > > >
    > > >
    > > > "One-Leg" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > Hello,
    > > > >
    > > > > If I have a list of numbers in colum "A".
    > > > >
    > > > > A1: 10
    > > > > A2: 20
    > > > > A3: 00
    > > > > A4: 15
    > > > > A5: 50
    > > > >
    > > > > An I want to see in cell C2 what is the lowest number in colum that is
    > > > > above
    > > > > 0 (in this case, it would be "10"). What do I need to put in cell C2???
    > > > >
    > > > > Thanks!!!
    > > >
    > > >


  6. #6
    Michael
    Guest

    Re: lowest number above 0

    Did it have the inverted commas or was that a typo.
    If it did, take them out !!
    --
    Michael Mitchelson


    "One-Leg" wrote:

    > when I copy/paste the formula "=SMALL(A1:A5,COUNTIF(A1:A5,0)+1)" in cell C2,
    > I get the following error messgae:
    >
    > =========================
    > The formula you typed contains an error.
    >
    > - For information about fixing common formula problems, click Help.
    > - To get assistance in entering a function, click OK, then Function on the
    > Insert menu.
    > - If you are not trying to enter a formula, avoid using an equal sign (=) or
    > minus sign (-), or precede it with a single quotations mark(').
    > =========================
    >
    > If I then click on OK, "A5,COUNTIF" is highlited as if something was wrong
    > there...
    >
    > I figured out the problem... between A5 and COUNTIF, I need to put ";" and
    > not ",". Same thing between A5 and 0.
    >
    > "Michael" wrote:
    >
    > > Works fine for me!!
    > > Can you let us know what error you are getting
    > > Regards
    > > Michael
    > > --
    > > Michael Mitchelson
    > >
    > >
    > > "One-Leg" wrote:
    > >
    > > > The formula given bellow doesn't work...
    > > >
    > > > "Peo Sjoblom" wrote:
    > > >
    > > > > =SMALL(A1:A5,COUNTIF(A1:A5,0)+1)
    > > > >
    > > > > --
    > > > > Regards,
    > > > >
    > > > > Peo Sjoblom
    > > > >
    > > > >
    > > > > "One-Leg" <[email protected]> wrote in message
    > > > > news:[email protected]...
    > > > > > Hello,
    > > > > >
    > > > > > If I have a list of numbers in colum "A".
    > > > > >
    > > > > > A1: 10
    > > > > > A2: 20
    > > > > > A3: 00
    > > > > > A4: 15
    > > > > > A5: 50
    > > > > >
    > > > > > An I want to see in cell C2 what is the lowest number in colum that is
    > > > > > above
    > > > > > 0 (in this case, it would be "10"). What do I need to put in cell C2???
    > > > > >
    > > > > > Thanks!!!
    > > > >
    > > > >


  7. #7
    Forum Contributor
    Join Date
    02-26-2005
    Posts
    175
    Hi
    Can someone please explain this to me

    [QUOTEI figured out the problem... between A5 and COUNTIF, I need to put ";" and
    not ",". Same thing between A5 and 0.QUOTE]

    When i use the "," it works fine. If i use the ";" then Excel corrects it to ","
    So how can it work someplace else??
    is this a Country thing??
    Thx
    Dave


    Quote Originally Posted by One-Leg
    when I copy/paste the formula "=SMALL(A1:A5,COUNTIF(A1:A5,0)+1)" in cell C2,
    I get the following error messgae:

    =========================
    The formula you typed contains an error.

    - For information about fixing common formula problems, click Help.
    - To get assistance in entering a function, click OK, then Function on the
    Insert menu.
    - If you are not trying to enter a formula, avoid using an equal sign (=) or
    minus sign (-), or precede it with a single quotations mark(').
    =========================

    If I then click on OK, "A5,COUNTIF" is highlited as if something was wrong
    there...

    I figured out the problem... between A5 and COUNTIF, I need to put ";" and
    not ",". Same thing between A5 and 0.

    "Michael" wrote:

    > Works fine for me!!
    > Can you let us know what error you are getting
    > Regards
    > Michael
    > --
    > Michael Mitchelson
    >
    >
    > "One-Leg" wrote:
    >
    > > The formula given bellow doesn't work...
    > >
    > > "Peo Sjoblom" wrote:
    > >
    > > > =SMALL(A1:A5,COUNTIF(A1:A5,0)+1)
    > > >
    > > > --
    > > > Regards,
    > > >
    > > > Peo Sjoblom
    > > >
    > > >
    > > > "One-Leg" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > Hello,
    > > > >
    > > > > If I have a list of numbers in colum "A".
    > > > >
    > > > > A1: 10
    > > > > A2: 20
    > > > > A3: 00
    > > > > A4: 15
    > > > > A5: 50
    > > > >
    > > > > An I want to see in cell C2 what is the lowest number in colum that is
    > > > > above
    > > > > 0 (in this case, it would be "10"). What do I need to put in cell C2???
    > > > >
    > > > > Thanks!!!
    > > >
    > > >

  8. #8
    Forum Contributor
    Join Date
    06-10-2004
    Location
    India
    Posts
    1,066
    Hi Dave,

    some countries use a semi-colon ( ; ) while some including us use the comma (,).

    Mangesh

  9. #9
    Forum Contributor
    Join Date
    02-26-2005
    Posts
    175
    Quote Originally Posted by mangesh_yadav
    Hi Dave,

    some countries use a semi-colon ( ; ) while some including us use the comma (,).

    Mangesh
    Mangesh,
    Boy that could get confusing. I wonder if that's why some of the code/formulas i find, won't work, when other people say they do work.

    So are there other differences besides the "," and ";' ??

    And so there are different Versions of Excel for different countries?? Like an excel 2000 for one country and a different version of excell 2000 for another??

    This sounds like a Yogi Berra thing. he he he

    Thx for your info
    Dave

  10. #10
    Forum Contributor
    Join Date
    06-10-2004
    Location
    India
    Posts
    1,066

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1