+ Reply to Thread
Results 1 to 7 of 7

PERCENTRANK Entire Column via Array Formula

  1. #1
    Registered User
    Join Date
    12-28-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    6

    PERCENTRANK Entire Column via Array Formula

    I need to use the PERCENTRANK function in order to rank an entire column; however, the column includes non-numbers such as the column header as well as numerous #N/A's that are returned via formula when a number is non-existent in a database. I have used the following array formulas in order to force the calculation of the GEOMEAN and AVERAGE of the column:

    {=GEOMEAN(IF(ISNUMBER($M:$M),$M:$M,""),IF(ISNUMBER($M:$M),$M:$M,""),IF(ISNUMBER($M:$M),$M:$M,""))}

    {=AVERAGE(IF(ISNUMBER($M:$M),$M:$M,""),IF(ISNUMBER($M:$M),$M:$M,""),IF(ISNUMBER($M:$M),$M:$M,""))}

    Is there a way to use PERCENTRANK, or one of its brethren, in the same way?

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: PERCENTRANK Entire Column via Array Formula

    I would suggest you just eliminate the #N/As. Wrap the lookup formulas in the IFERROR function e.g.;
    =IFERROR(your_formula_here, "")

    Text and blanks would be ignored by the AVERAGE and PERCENTRANK functions.
    Last edited by AlphaFrog; 12-28-2013 at 03:42 AM.
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

  3. #3
    Registered User
    Join Date
    12-28-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: PERCENTRANK Entire Column via Array Formula

    Unfortunately, the #N/As are there by design, as Excel ignores them when drawing charts. If the cell was populated using "", then the charts dive to the zero line, which is not aesthetically pleasing for use in presentation.

    In an ideal world, it would also be great if the cells using the formula in the PERCENTRANK column would generate #N/As if another column did not have a number in it, but I have no idea if this is possible.

  4. #4
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699

    Re: PERCENTRANK Entire Column via Array Formula

    Quote Originally Posted by Chip4Pips View Post
    {=AVERAGE(IF(ISNUMBER($M:$M),$M:$M,""),IF(ISNUMBER($M:$M),$M:$M,""),IF(ISNUMBER($M:$M),$M:$M,""))}
    I'm not clear why you are repeating the same IF function three times, if you want the average of column M then surely you can use just

    =AVERAGE(IF(ISNUMBER($M:$M),$M:$M))

    confirmed with CTRL+SHIFT+ENTER

    or it might be easier to use AVERAGEIF like this

    =AVERAGEIF(M:M,"<9.9E+307")

    that doesn't need to be "array entered" and will ignore text, blanks and errors

    For PERCENTRANK do you want a single formula or are you copying it down the column - if it's the latter does that mean you expect to get the same result against every numeric entry in column M?
    Audere est facere

  5. #5
    Registered User
    Join Date
    12-28-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: PERCENTRANK Entire Column via Array Formula

    Thanks for cleaning up my use of the AVERAGE function three times! It was something I cobbled together after searching all over the web and while it worked, it was not efficient, to be sure.

    For PERCENTRANK, you are correct that I am copying down the column, ranking each individual numeric entry in column M relative to the entire numeric contents of column M. I would expect each cell to have a different number.

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

    Re: PERCENTRANK Entire Column via Array Formula

    Quote Originally Posted by Chip4Pips View Post
    I would expect each cell to have a different number.
    Of course. For some reason I was thinking PERCENTILE

    Try this formula in row 1

    =IF(ISNUMBER(M1),PERCENTRANK(IF(ISNUMBER(M:M),M:M),M1),NA())

    confirm with CTRL+SHIFT+ENTER and copy down

    if M1 is a number you get the PERCENTRANK, otherwise you get #N/A error. You might want blanks to return a blank in which case you can add another IF like this

    =IF(M1="","",IF(ISNUMBER(M1),PERCENTRANK(IF(ISNUMBER(M:M),M:M),M1),NA()))

  7. #7
    Registered User
    Join Date
    12-28-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: PERCENTRANK Entire Column via Array Formula

    Your solution works perfectly! Many, many 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] Using Offset function as the array in the PercentRank function is giving wrong result
    By Bobneil in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 08-06-2013, 09:29 PM
  2. Populate an entire column of an array
    By Phil_V in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-07-2009, 04:15 PM
  3. [SOLVED] PERCENTRANK in array formula: strange behavior
    By vezerid in forum Excel General
    Replies: 4
    Last Post: 03-09-2006, 12:11 PM
  4. Filling excel entire row/column instead of single cell from an array
    By shitij in forum Excel Formulas & Functions
    Replies: 27
    Last Post: 09-06-2005, 03:05 PM
  5. Replies: 3
    Last Post: 04-20-2005, 11:51 AM

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