+ Reply to Thread
Results 1 to 6 of 6

need a formula to tell me the average bottom 50%

  1. #1
    Registered User
    Join Date
    09-16-2011
    Location
    edwinstowe
    MS-Off Ver
    Excel 2003
    Posts
    7

    need a formula to tell me the average bottom 50%

    How do i write a formula that will tell me the value of the average bottom 50% without having to individually typing out every number (so instead of typing 1,2,3?)

    This is what i have so far?






    £1 answer £441
    £341
    £349
    £445
    £504
    £571
    £622
    £698
    £758
    £805
    £827
    £845
    £855
    £863
    £929
    £936

  2. #2
    Valued Forum Contributor Miraun's Avatar
    Join Date
    04-03-2009
    Location
    New England
    MS-Off Ver
    2003, 2007, 2010, 2013
    Posts
    554

    Re: need a formula to tell me the average bottom 50%

    =Quartile(Array,1)

    Nevermind, that's wrong... one moment.
    Going for Guru! Click the Star to the bottom left of this post if I helped!

  3. #3
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: need a formula to tell me the average bottom 50%

    How about =SUMPRODUCT(A1:A16,--(A1:A16<=SMALL(A1:A16,INT(COUNTA(A1:A16)/2))))/COUNTIF(A1:A16,"<=" & SMALL(A1:A16,INT(COUNTA(A1:A16)/2)))

    That seems to return the answer you're looking for.

  4. #4
    Registered User
    Join Date
    09-16-2011
    Location
    edwinstowe
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: need a formula to tell me the average bottom 50%

    Andrew-R - that works perfectly thank you so much

  5. #5
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: need a formula to tell me the average bottom 50%

    No problems, glad we got there in the end

  6. #6
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675

    Re: need a formula to tell me the average bottom 50%

    You could get the same result with an "array formula", i.e.

    =AVERAGE(IF(A1:A16<=SMALL(A1:A16,INT(COUNT(A1:A16)/2)),A1:A16))

    confirmed with CTRL+SHIFT+ENTER

    but note that like Andrew's suggestion that might actually average more than 8 values (out of 16) if you have ties around the cut-off point. To always average exactly 8 values, ties or not, this version can be used

    =AVERAGE(SMALL(A1:A16,ROW(INDIRECT("1:"&INT(COUNT(A1:A16)/2)))))

    ...also array entered
    Audere est facere

+ 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