+ Reply to Thread
Results 1 to 7 of 7

Refercence the cells percentile compared to its column

  1. #1
    Forum Contributor
    Join Date
    09-04-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    298

    Refercence the cells percentile compared to its column

    There are 4 columns, D, E, F, G

    Each column lists scores in every row. The scores mean nothing by themselves, but exceptionally high or low scores compared to the group are a cause for concern.

    To make analyzing this easier, I created an H column. The H column analyzes all four scores in a row, and aggregate them into one main score.

    I want the formula for this score to do the following:

    Look at the value in each column for that row. For every value, compute what percentile it falls in compared to the rest of the scores in that column. Compute four percentiles scores (one for each column) and then produce an average of the percentiles.

    So basically this is the plaintext version of the formula I need for cell H2:


    (D2's percentile when compared to alll the numbers in column D)

    +

    (E2's percentile when compared to alll the numbers in column D)

    +

    (F2's percentile when compared to alll the numbers in column F)

    +

    (G2's percentile when compared to alll the numbers in column G)

    ************DIVIDED BY****************

    4



    How would I do this?

    Also if someone is better at statistics and can think of a more mathmatically accurate and sound way to accomplish my goal, feel free to come up with a different algorithm.
    Last edited by ks100; 10-25-2013 at 02:26 PM.

  2. #2
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Refercence the cells percentile compared to its column

    I went with:

    =AVERAGE(PERCENTRANK($D$2:$D$28,D2),PERCENTRANK($E$2:$E$28,E2),PERCENTRANK($F$2:$F$28,F2),PERCENTRANK($G$2:$G$28,G2))

    average percentile.xlsx
    Last edited by daffodil11; 10-25-2013 at 02:31 PM. Reason: examples

  3. #3
    Forum Expert
    Join Date
    12-11-2011
    Location
    Netherlands
    MS-Off Ver
    office 365
    Posts
    3,690

    Re: Refercence the cells percentile compared to its column

    Take a look at these statistical parameters.

    http://en.wikipedia.org/wiki/Coefficient_of_variation

    http://en.wikipedia.org/wiki/Standard_deviation
    Willem
    English is not my native language sorry for errors
    Please correct me if I'm completely wrong

  4. #4
    Forum Contributor
    Join Date
    09-04-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    298

    Re: Refercence the cells percentile compared to its column

    Quote Originally Posted by daffodil11 View Post
    I went with:

    =AVERAGE(PERCENTRANK($D$2:$D$28,D2),PERCENTRANK($E$2:$E$28,E2),PERCENTRANK($F$2:$F$28,F2),PERCENTRANK($G$2:$G$28,G2))

    Attachment 273492
    Can that be populated down infinitely depending on size of the spreadsheet I paste it into? Or do I have ot manually update the maximum. I noticed you have the number 28 in there, that was why I asked.

  5. #5
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Refercence the cells percentile compared to its column

    You can expand them for whatever works for you, beyond what you have data for. If you only have data in the first 200 rows, you can still use:

    =AVERAGE(PERCENTRANK($D$2:$D$5000,D2),PERCENTRANK($E$2:$E$5000,E2),PERCENTRANK($F$2:$F$5000,F2),PERCENTRANK($G$2:$G$5000,G2))

    and it will ignore the blanks

  6. #6
    Forum Contributor
    Join Date
    09-04-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    298

    Re: Refercence the cells percentile compared to its column

    Roger that, I don't think I will have a sheet with over 5000 so that should work. Thanks a ton!

  7. #7
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Refercence the cells percentile compared to its column

    Glad we could help.

+ 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] =IF function with 4 Cells that need compared
    By mmanning in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 09-26-2013, 12:32 PM
  2. [SOLVED] Count values in one column, compared to other columns
    By whatdafudge in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 12-14-2012, 01:34 AM
  3. Replies: 4
    Last Post: 08-16-2011, 01:03 PM
  4. Using a partial text string compared to a column with VLOOKUP
    By carolyn.brussee in forum Excel General
    Replies: 6
    Last Post: 11-18-2010, 12:39 PM
  5. Count occurences of compared cells
    By jayjack in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-06-2010, 12:25 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