+ Reply to Thread
Results 1 to 4 of 4

How to obtain a value above certain percentage?

  1. #1
    Registered User
    Join Date
    07-02-2008
    Location
    New Orleans
    Posts
    5

    How to obtain a value above certain percentage?

    I have a range of values in a column and would like to get the first value above the minimum 10% of the values given.

    Basically, I want to ignore the bottom 10% of values and find the next higher up value.

    Any suggestions?

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Maybe =MIN(IF(PERCENTRANK(A1:A20, A1:A20) >0.1, A1:A20))

    This is an array formula, meaning it MUST be confirmed with Ctrl+Shift+Enter, not just Enter. (With the cursor in the formula bar, hold down Ctrl and Shift, then press Enter.) You'll know you did it correctly if curly braces appear around the formula in the Formula Bar; you cannot type in the braces directly.

  3. #3
    Registered User
    Join Date
    07-02-2008
    Location
    New Orleans
    Posts
    5
    Initially I used:

    =MIN(IF($E$2:$E$3125>(0.1*MAX($E$2:$E$3125)-MIN($E$2:$E$3125)),$E$2:$E$3125))

    I also used the array tool {}.

    The above gave a smaller value from the range and yours seems to give a slightly higher one. Thanks for the response.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Percentrank returns percentiles (e.g., the lowest 100 of 1000 scores are the lowest tenth percentile, irrespective of the score values).

    Use whichever gives what you want.

+ 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