+ Reply to Thread
Results 1 to 4 of 4

Identify top 3, bottom 3 and intermediate values using IF function

  1. #1
    Registered User
    Join Date
    11-17-2012
    Location
    Israel
    MS-Off Ver
    Excel 2007
    Posts
    1

    Identify top 3, bottom 3 and intermediate values using IF function

    Hi Everyone,

    I need to identify top 3, bottom 3 and intermediate values for each column in a table A and based on the same, return a value of HIGH, LOW or INTERMEDIATE to corresponding cells in table B. I have been asked to use the IF function.

    I have attached a sample excel sheet and manually entered values in the first coulmn of table B to give a better understanding of the results that I need.

    I appreciate your help!!

    Natalie
    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: Identify top 3, bottom 3 and intermediate values using IF function

    In D19 try..

    =IF(RANK(D5,$D$5:$D$14)<=3,"high",IF(RANK(D5,$D$5:$D$14)>=7,"Low","Intermediate"))

    Copy across and down
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Registered User
    Join Date
    10-02-2012
    Location
    Baku
    MS-Off Ver
    Excel 2010
    Posts
    273

    Re: Identify top 3, bottom 3 and intermediate values using IF function

    In e19

    =if(e5>=large($e$5:$e$14,3),"high",if(e5<=small($e$5:$e$14,3),"low","intermediate"))

  4. #4
    Registered User
    Join Date
    10-02-2012
    Location
    Baku
    MS-Off Ver
    Excel 2010
    Posts
    273

    Re: Identify top 3, bottom 3 and intermediate values using IF function

    Difference between my and ACE_XL"s formula is.
    If there same numbers (ex 2 10s) large function will take both of them. But rank function will rank only number of 10.
    According to your spreadsheet formula with Rank function is 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)

Tags for this Thread

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