+ Reply to Thread
Results 1 to 5 of 5

Using LARGE Function

  1. #1
    Michael
    Guest

    Using LARGE Function

    Hi All
    This one has me stumped.
    I have a range of 40 cells. All cells have the default of 999 in them
    When some of them have been populated I want to find the LARGEST of those
    new numbers.
    I have tried something like this

    =IF(LARGE(B6:AO6,1)=999,"",LARGE(B6:AO6,1)<999))

    which doesn't work.
    Can you please point me in the right direction

    Regards
    Michael Mitchelson

  2. #2
    Biff
    Guest

    Re: Using LARGE Function

    Hi!

    Array entered using the key combo of CTRL,SHIFT,ENTER:

    =LARGE(IF(B6:AO6<>999,B6:AO6),1)

    Biff

    "Michael" <Michael_MitchelsonNOSP@rta.nsw.gov.au> wrote in message
    news:ABC51C7F-6187-4111-ADA1-7A36E41C4778@microsoft.com...
    > Hi All
    > This one has me stumped.
    > I have a range of 40 cells. All cells have the default of 999 in them
    > When some of them have been populated I want to find the LARGEST of those
    > new numbers.
    > I have tried something like this
    >
    > =IF(LARGE(B6:AO6,1)=999,"",LARGE(B6:AO6,1)<999))
    >
    > which doesn't work.
    > Can you please point me in the right direction
    >
    > Regards
    > Michael Mitchelson




  3. #3
    Michael
    Guest

    Re: Using LARGE Function

    Many Thanks Biff.
    I was getting closer, but running out of hair.
    Regards
    Michael Mitchelson


    "Biff" wrote:

    > Hi!
    >
    > Array entered using the key combo of CTRL,SHIFT,ENTER:
    >
    > =LARGE(IF(B6:AO6<>999,B6:AO6),1)
    >
    > Biff
    >
    > "Michael" <Michael_MitchelsonNOSP@rta.nsw.gov.au> wrote in message
    > news:ABC51C7F-6187-4111-ADA1-7A36E41C4778@microsoft.com...
    > > Hi All
    > > This one has me stumped.
    > > I have a range of 40 cells. All cells have the default of 999 in them
    > > When some of them have been populated I want to find the LARGEST of those
    > > new numbers.
    > > I have tried something like this
    > >
    > > =IF(LARGE(B6:AO6,1)=999,"",LARGE(B6:AO6,1)<999))
    > >
    > > which doesn't work.
    > > Can you please point me in the right direction
    > >
    > > Regards
    > > Michael Mitchelson

    >
    >
    >


  4. #4
    Biff
    Guest

    Re: Using LARGE Function

    You're welcome.

    That could also be accomplished using MAX if you're only interested in a
    single value:

    Array entered:

    =MAX(IF(B6:AO6<>999,B6:AO6))

    LARGE will allow you to get the nth largest value.

    Biff

    "Michael" <Michael_MitchelsonNOSP@rta.nsw.gov.au> wrote in message
    news:BE002AB8-F208-42D4-A499-CACE2A69FC98@microsoft.com...
    > Many Thanks Biff.
    > I was getting closer, but running out of hair.
    > Regards
    > Michael Mitchelson
    >
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Array entered using the key combo of CTRL,SHIFT,ENTER:
    >>
    >> =LARGE(IF(B6:AO6<>999,B6:AO6),1)
    >>
    >> Biff
    >>
    >> "Michael" <Michael_MitchelsonNOSP@rta.nsw.gov.au> wrote in message
    >> news:ABC51C7F-6187-4111-ADA1-7A36E41C4778@microsoft.com...
    >> > Hi All
    >> > This one has me stumped.
    >> > I have a range of 40 cells. All cells have the default of 999 in them
    >> > When some of them have been populated I want to find the LARGEST of
    >> > those
    >> > new numbers.
    >> > I have tried something like this
    >> >
    >> > =IF(LARGE(B6:AO6,1)=999,"",LARGE(B6:AO6,1)<999))
    >> >
    >> > which doesn't work.
    >> > Can you please point me in the right direction
    >> >
    >> > Regards
    >> > Michael Mitchelson

    >>
    >>
    >>




  5. #5
    Michael
    Guest

    Re: Using LARGE Function

    Thanks Again Biff
    Actually, the MAX function might apply better in this situation.
    I'll give it a try.
    --
    Michael Mitchelson


    "Biff" wrote:

    > You're welcome.
    >
    > That could also be accomplished using MAX if you're only interested in a
    > single value:
    >
    > Array entered:
    >
    > =MAX(IF(B6:AO6<>999,B6:AO6))
    >
    > LARGE will allow you to get the nth largest value.
    >
    > Biff
    >
    > "Michael" <Michael_MitchelsonNOSP@rta.nsw.gov.au> wrote in message
    > news:BE002AB8-F208-42D4-A499-CACE2A69FC98@microsoft.com...
    > > Many Thanks Biff.
    > > I was getting closer, but running out of hair.
    > > Regards
    > > Michael Mitchelson
    > >
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Array entered using the key combo of CTRL,SHIFT,ENTER:
    > >>
    > >> =LARGE(IF(B6:AO6<>999,B6:AO6),1)
    > >>
    > >> Biff
    > >>
    > >> "Michael" <Michael_MitchelsonNOSP@rta.nsw.gov.au> wrote in message
    > >> news:ABC51C7F-6187-4111-ADA1-7A36E41C4778@microsoft.com...
    > >> > Hi All
    > >> > This one has me stumped.
    > >> > I have a range of 40 cells. All cells have the default of 999 in them
    > >> > When some of them have been populated I want to find the LARGEST of
    > >> > those
    > >> > new numbers.
    > >> > I have tried something like this
    > >> >
    > >> > =IF(LARGE(B6:AO6,1)=999,"",LARGE(B6:AO6,1)<999))
    > >> >
    > >> > which doesn't work.
    > >> > Can you please point me in the right direction
    > >> >
    > >> > Regards
    > >> > Michael Mitchelson
    > >>
    > >>
    > >>

    >
    >
    >


+ 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