+ Reply to Thread
Results 1 to 8 of 8

sum of top 16 numbers

  1. #1
    Barb
    Guest

    sum of top 16 numbers

    I'm trying to total only the top 16 scores in a row. I have 1 cell that
    'counts' the number of entries and would like to use that as part of this
    formula.

    As the events continue, this number will change accordingly.

    Something like???
    if e6<=16,sum(f6:z6),???

  2. #2
    Bob Phillips
    Guest

    Re: sum of top 16 numbers

    =SUM(LARGE(F6:Z6,ROW(1:16)))

    which is an array formula, it should be committed with Ctrl-Shift-Enter, not
    just Enter.

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Barb" <[email protected]> wrote in message
    news:[email protected]...
    > I'm trying to total only the top 16 scores in a row. I have 1 cell that
    > 'counts' the number of entries and would like to use that as part of this
    > formula.
    >
    > As the events continue, this number will change accordingly.
    >
    > Something like???
    > if e6<=16,sum(f6:z6),???




  3. #3
    Chip Pearson
    Guest

    Re: sum of top 16 numbers

    In case a row might be inserted within the first 16 rows, it
    would be safer to use
    =SUM(LARGE(F6:Z6,ROW(INDIRECT("1:16"))))


    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com


    "Bob Phillips" <[email protected]> wrote in
    message news:%[email protected]...
    > =SUM(LARGE(F6:Z6,ROW(1:16)))
    >
    > which is an array formula, it should be committed with
    > Ctrl-Shift-Enter, not
    > just Enter.
    >
    > --
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from email address if mailing direct)
    >
    > "Barb" <[email protected]> wrote in message
    > news:[email protected]...
    >> I'm trying to total only the top 16 scores in a row. I have 1
    >> cell that
    >> 'counts' the number of entries and would like to use that as
    >> part of this
    >> formula.
    >>
    >> As the events continue, this number will change accordingly.
    >>
    >> Something like???
    >> if e6<=16,sum(f6:z6),???

    >
    >




  4. #4
    Barb
    Guest

    Re: sum of top 16 numbers

    That works great, but when I copy it down to the next row, I get an #num!
    error.

    "Bob Phillips" wrote:

    > =SUM(LARGE(F6:Z6,ROW(1:16)))
    >
    > which is an array formula, it should be committed with Ctrl-Shift-Enter, not
    > just Enter.
    >
    > --
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from email address if mailing direct)
    >
    > "Barb" <[email protected]> wrote in message
    > news:[email protected]...
    > > I'm trying to total only the top 16 scores in a row. I have 1 cell that
    > > 'counts' the number of entries and would like to use that as part of this
    > > formula.
    > >
    > > As the events continue, this number will change accordingly.
    > >
    > > Something like???
    > > if e6<=16,sum(f6:z6),???

    >
    >
    >


  5. #5
    Bob Phillips
    Guest

    Re: sum of top 16 numbers

    Barb,

    Use this version then in that case

    =SUM(LARGE(F6:Z6,ROW(INDIRECT("1:16"))))

    still array entered.

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Barb" <[email protected]> wrote in message
    news:[email protected]...
    > That works great, but when I copy it down to the next row, I get an #num!
    > error.
    >
    > "Bob Phillips" wrote:
    >
    > > =SUM(LARGE(F6:Z6,ROW(1:16)))
    > >
    > > which is an array formula, it should be committed with Ctrl-Shift-Enter,

    not
    > > just Enter.
    > >
    > > --
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (remove nothere from email address if mailing direct)
    > >
    > > "Barb" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > I'm trying to total only the top 16 scores in a row. I have 1 cell

    that
    > > > 'counts' the number of entries and would like to use that as part of

    this
    > > > formula.
    > > >
    > > > As the events continue, this number will change accordingly.
    > > >
    > > > Something like???
    > > > if e6<=16,sum(f6:z6),???

    > >
    > >
    > >




  6. #6
    Barb
    Guest

    Re: sum of top 16 numbers

    This isn't working...

    I have many rows. There are many columns. I'm trying to total only the top
    16 scores in a row... not column.

    for example:
    sum sum
    of all of top # of
    name scores 16 scores scores Event 1 E2 E3 ..... E20
    john doe 151 ??? 16 12 14 12
    12
    jim jones 145 ??? 15 11 12 11
    14

    "Chip Pearson" wrote:

    > In case a row might be inserted within the first 16 rows, it
    > would be safer to use
    > =SUM(LARGE(F6:Z6,ROW(INDIRECT("1:16"))))
    >
    >
    > --
    > Cordially,
    > Chip Pearson
    > Microsoft MVP - Excel
    > Pearson Software Consulting, LLC
    > www.cpearson.com
    >
    >
    > "Bob Phillips" <[email protected]> wrote in
    > message news:%[email protected]...
    > > =SUM(LARGE(F6:Z6,ROW(1:16)))
    > >
    > > which is an array formula, it should be committed with
    > > Ctrl-Shift-Enter, not
    > > just Enter.
    > >
    > > --
    > > HTH
    > >
    > > Bob Phillips
    > >
    > > (remove nothere from email address if mailing direct)
    > >
    > > "Barb" <[email protected]> wrote in message
    > > news:[email protected]...
    > >> I'm trying to total only the top 16 scores in a row. I have 1
    > >> cell that
    > >> 'counts' the number of entries and would like to use that as
    > >> part of this
    > >> formula.
    > >>
    > >> As the events continue, this number will change accordingly.
    > >>
    > >> Something like???
    > >> if e6<=16,sum(f6:z6),???

    > >
    > >

    >
    >
    >


  7. #7
    Forum Contributor
    Join Date
    09-25-2004
    Posts
    269
    Does this help?


    =SUM(LARGE($F6:$Z6,{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}))

  8. #8
    Bob Phillips
    Guest

    Re: sum of top 16 numbers

    We know that, and it does work. It would help if you explained exactly what
    you did and the result you got.

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Barb" <[email protected]> wrote in message
    news:[email protected]...
    > This isn't working...
    >
    > I have many rows. There are many columns. I'm trying to total only the

    top
    > 16 scores in a row... not column.
    >
    > for example:
    > sum sum
    > of all of top # of
    > name scores 16 scores scores Event 1 E2 E3 .....

    E20
    > john doe 151 ??? 16 12 14 12
    > 12
    > jim jones 145 ??? 15 11 12 11
    > 14
    >
    > "Chip Pearson" wrote:
    >
    > > In case a row might be inserted within the first 16 rows, it
    > > would be safer to use
    > > =SUM(LARGE(F6:Z6,ROW(INDIRECT("1:16"))))
    > >
    > >
    > > --
    > > Cordially,
    > > Chip Pearson
    > > Microsoft MVP - Excel
    > > Pearson Software Consulting, LLC
    > > www.cpearson.com
    > >
    > >
    > > "Bob Phillips" <[email protected]> wrote in
    > > message news:%[email protected]...
    > > > =SUM(LARGE(F6:Z6,ROW(1:16)))
    > > >
    > > > which is an array formula, it should be committed with
    > > > Ctrl-Shift-Enter, not
    > > > just Enter.
    > > >
    > > > --
    > > > HTH
    > > >
    > > > Bob Phillips
    > > >
    > > > (remove nothere from email address if mailing direct)
    > > >
    > > > "Barb" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > >> I'm trying to total only the top 16 scores in a row. I have 1
    > > >> cell that
    > > >> 'counts' the number of entries and would like to use that as
    > > >> part of this
    > > >> formula.
    > > >>
    > > >> As the events continue, this number will change accordingly.
    > > >>
    > > >> Something like???
    > > >> if e6<=16,sum(f6:z6),???
    > > >
    > > >

    > >
    > >
    > >




+ 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