+ Reply to Thread
Results 1 to 4 of 4

Sum the 4 lowest numbers in a row of 7 numbers.

  1. #1
    Registered User
    Join Date
    06-13-2012
    Location
    Falls Church, VA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Sum the 4 lowest numbers in a row of 7 numbers.

    I am trying to come up with a formula to sum the 4 lowest scores out of a row of 7. The purpose of this is to find the lowest scores in a best of 7 competition where there are 7 events, low score wins and you get the 3 highest scores thrown out. There should be a simple way to do this, but it eludes me.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Sum the 4 lowest numbers in a row of 7 numbers.

    Try something like:

    =SUM(SMALL(A2:G2,{1,2,3,4}))

    where A2:G2 contain your 7 numbers.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Valued Forum Contributor
    Join Date
    03-25-2004
    Location
    Boston, MA US
    Posts
    1,094

    Re: Sum the 4 lowest numbers in a row of 7 numbers.

    Hi,

    Where A1:A7 are the scores try,

    =SUM(IF(RANK(A1:$A$7,$A$1:$A$7,1)<=4,$A$1:$A$7,""))

    This is an array formula so commit with Ctrl+Shift+Enter.

    HTH
    Steve

  4. #4
    Registered User
    Join Date
    06-13-2012
    Location
    Falls Church, VA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Sum the 4 lowest numbers in a row of 7 numbers.

    Perfect. It works like a charm.

+ 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