+ Reply to Thread
Results 1 to 3 of 3

Averaging best 15 out of 20?

  1. #1
    Rando
    Guest

    Averaging best 15 out of 20?

    I have a spreadsheet set up with test scores and I want to average the best
    15 scores out of 20 without manually picking the 15 scores. Basically I want
    to drop the lowest 5 scores for each student. Is there a formula/function
    that does this?

    Thanks,
    Rando



  2. #2
    Duke Carey
    Guest

    RE: Averaging best 15 out of 20?

    This is an array formula, meaning you commit it with Ctrl-Shift-Enter

    =AVERAGE(LARGE(A1:A20,ROW(1:15)))

    where the scores are in A1:A20

    "Rando" wrote:

    > I have a spreadsheet set up with test scores and I want to average the best
    > 15 scores out of 20 without manually picking the 15 scores. Basically I want
    > to drop the lowest 5 scores for each student. Is there a formula/function
    > that does this?
    >
    > Thanks,
    > Rando
    >
    >


  3. #3
    JE McGimpsey
    Guest

    Re: Averaging best 15 out of 20?

    One slight adjustment that will prevent the formula changing if rows are
    inserted or deleted:

    =AVERAGE(LARGE(A1:A20,ROW(INDIRECT("1:15"))))


    In article <[email protected]>,
    "Duke Carey" <[email protected]> wrote:

    > This is an array formula, meaning you commit it with Ctrl-Shift-Enter
    >
    > =AVERAGE(LARGE(A1:A20,ROW(1:15)))
    >
    > where the scores are in A1:A20
    >
    > "Rando" wrote:
    >
    > > I have a spreadsheet set up with test scores and I want to average the best
    > > 15 scores out of 20 without manually picking the 15 scores. Basically I
    > > want
    > > to drop the lowest 5 scores for each student. Is there a formula/function
    > > that does this?
    > >
    > > Thanks,
    > > Rando
    > >
    > >


+ 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