+ Reply to Thread
Results 1 to 3 of 3

find smallest number not equal to 0

  1. #1
    dave
    Guest

    find smallest number not equal to 0

    What I want to do is find the lowest number in a column that is not equal to 0.

    example

    column A1
    10
    0
    15
    0
    10
    0
    2
    0


    The result I want would be 2.

    I tried =MIN(<>0,Data!I5) but got an error.

    Thanks

  2. #2
    JE McGimpsey
    Guest

    Re: find smallest number not equal to 0

    One way (array-entered: CTRL-SHIFT-ENTER or CMD-RETURN):

    =MIN(IF(A1:A100<>0,A1:A100))

    In article <[email protected]>,
    [email protected] (dave) wrote:

    > What I want to do is find the lowest number in a column that is not equal to
    > 0.
    >
    > example
    >
    > column A1
    > 10
    > 0
    > 15
    > 0
    > 10
    > 0
    > 2
    > 0
    >
    >
    > The result I want would be 2.
    >
    > I tried =MIN(<>0,Data!I5) but got an error.
    >
    > Thanks


  3. #3
    Duke Carey
    Guest

    RE: find smallest number not equal to 0

    Array entered - meaning Ctrl_Shift-Enter

    =MIN(IF((A1:A7)>0,A1:A7))

    "dave" wrote:

    > What I want to do is find the lowest number in a column that is not equal to 0.
    >
    > example
    >
    > column A1
    > 10
    > 0
    > 15
    > 0
    > 10
    > 0
    > 2
    > 0
    >
    >
    > The result I want would be 2.
    >
    > I tried =MIN(<>0,Data!I5) but got an error.
    >
    > Thanks
    >


+ 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