+ Reply to Thread
Results 1 to 9 of 9

Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

  1. #1
    Registered User
    Join Date
    05-08-2014
    MS-Off Ver
    Excel 2003
    Posts
    3

    Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    I have a list of numbers in J8 - J21 and L8 - L21. I need to be able to select any 5 and have the formula sum the lowest three. For example, a sum formula I have is =SUM(L18,L14,L15,J12,J15). I need to be able to convert that formula so that it will sum the lowest three numbers in those corresponding cells. I know how to do sum of lowest/highest in a sequential cell like A1:A10 but not when they are random like that. Any thoughts?
    Last edited by bu08usc11; 05-09-2014 at 10:51 AM.

  2. #2
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    Try this:

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  3. #3
    Registered User
    Join Date
    05-08-2014
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    Quote Originally Posted by 6StringJazzer View Post
    Try this:

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    1) Should it be SMALL since I want lowest?

    2) Where in that formula should I put the cell I want it to pull from? (i.e. L18,L14,L15,J12,J15)

  4. #4
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    You could use SMALL (I forgot about SMALL) and then the second arguments would be 1, 2, 3 respectively.

    I think I misunderstood your explanation. SMALL requires an array, that is, a contiguous range. You have a discontiguous range. I can't think of a way to do that without a macro but maybe someone else will contribute.

  5. #5
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    Quote Originally Posted by 6StringJazzer View Post

    SMALL requires an array, that is, a contiguous range.
    SMALL (and LARGE) will accept multiple area references:

    =SMALL((A1:A5,C1:C5),1)

    Maybe they want something like this:

    Data Range
    A
    B
    C
    D
    E
    1
    67
    35
    90
    2
    57
    90
    3
    76
    55
    4
    11
    44
    5
    84
    49
    6
    ------
    ------
    ------
    ------
    ------


    This formula entered in e1:

    =SUM(SMALL((A1:A5,C1:C5),{1,2,3}))
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  6. #6
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS365 Family 64-bit
    Posts
    24,721

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    That is very slick Tony, I was not familiar with that syntax for multiple ranges, or that SMALL would produce an array result if you use an array as the second argument.

  7. #7
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,595

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    Try this ARRAY formula,
    Please Login or Register  to view this content.
    To enter array formula
    Paste the formula in cell
    Press F2
    Press Ctrl+Shift+Enter keys together
    {} is seen around the formula.

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    Quote Originally Posted by kvsrinivasamurthy View Post
    Try this ARRAY formula,
    =SUM(SMALL((L18,L14,L15,J12,J15),{1,2,3}))
    That formula does not need to be array entered. Just a normal enter will do.

  9. #9
    Registered User
    Join Date
    05-08-2014
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Need Formula for Sum of Lowest 3 in list of 5 Random Cell Numbers

    Quote Originally Posted by kvsrinivasamurthy View Post
    Try this ARRAY formula,
    Please Login or Register  to view this content.
    To enter array formula
    Paste the formula in cell
    Press F2
    Press Ctrl+Shift+Enter keys together
    {} is seen around the formula.
    PERFECT. Thanks!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Adding a list of numbers, dropping the lowest number first.
    By BadWolfBay75 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-19-2014, 10:12 PM
  2. Replies: 3
    Last Post: 11-22-2013, 05:06 PM
  3. Generating a list of Random numbers of random length...
    By Growl in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-19-2013, 12:10 PM
  4. Replies: 4
    Last Post: 11-06-2011, 12:06 PM
  5. Picking 5 highest/lowest numbers from a list
    By johnexceljohn in forum Excel General
    Replies: 25
    Last Post: 07-23-2009, 05:59 PM

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