+ Reply to Thread
Results 1 to 5 of 5

Characterize Top 25% - Bottom 25% of a list and average

  1. #1
    Registered User
    Join Date
    03-13-2014
    Location
    Athens, Greece
    MS-Off Ver
    Excel 2007
    Posts
    59

    Characterize Top 25% - Bottom 25% of a list and average

    Hi all!

    I need your precious help once again...

    1.In the attachment you will see a list of numbers (B2:B51) and I need next to each number (C2:C52) to have the values "T" if the number is in the top 25% of the list, 'MT" if the number is in the "next" 25% of the list, "MB" if the number is in the third 25% of the list and "B" if the number is in the bottom 25% of the list.

    Do you have in mind any formula which can calculate this? I am not familiar with formulas which contains lists/arrays so the only way I have thought is sorting and putting the values manually..

    2.In the cell B53 I need the average of the numbers of the top 25% divided by the average of the bottom 25%. The formula though shouldn't involve the values in column C.

    Any help will be appreciated
    Attached Files Attached Files

  2. #2
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Characterize Top 25% - Bottom 25% of a list and average

    Try

    =LOOKUP(B2,QUARTILE($B$2:$B$51,{0,1,2,3}),{"B","MB","MT","T"})
    or
    =CHOOSE(MATCH(B2,QUARTILE($B$2:$B$51,{0,1,2,3})),"B","MB","MT","T")
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Registered User
    Join Date
    03-13-2014
    Location
    Athens, Greece
    MS-Off Ver
    Excel 2007
    Posts
    59

    Re: Characterize Top 25% - Bottom 25% of a list and average

    Thanks Ace_XL !

    That was fast!

    It worked just fine!
    Any suggestions about the second part?

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Characterize Top 25% - Bottom 25% of a list and average

    Aah..I didn't see that all

    Try

    =AVERAGEIF(B2:B51,">"&QUARTILE($B$2:$B$51,3))/AVERAGEIF(B2:B51,"<="&QUARTILE($B$2:$B$51,1))

  5. #5
    Registered User
    Join Date
    03-13-2014
    Location
    Athens, Greece
    MS-Off Ver
    Excel 2007
    Posts
    59

    Re: Characterize Top 25% - Bottom 25% of a list and average

    You are great!

    Thanks again!!!

+ 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. Array to Calc Bottom Average
    By Kraftyk in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 06-10-2014, 02:48 PM
  2. [SOLVED] Average bottom 50 rows of a given group
    By beng404 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 08-16-2013, 02:55 PM
  3. need a formula to tell me the average bottom 50%
    By padcfc in forum Excel General
    Replies: 5
    Last Post: 09-16-2011, 09:40 AM
  4. Average Top Mid and Bottom
    By tforbes75 in forum Excel General
    Replies: 3
    Last Post: 09-15-2009, 04:49 PM
  5. [SOLVED] Average top 10 or bottom 10
    By LRS in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 05-25-2005, 03:06 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