+ Reply to Thread
Results 1 to 7 of 7

IF function help!!

Hybrid View

  1. #1
    Registered User
    Join Date
    01-26-2015
    Location
    Newcastle, England
    MS-Off Ver
    2010
    Posts
    2

    IF function help!!

    Hi,

    I would massively appreciate some help in solving a if function formula.

    I'll try and explain below:

    1. If G5 is equal to 75 or below 75 this is "Inadequate".

    2. If G5 is equal to 76, equal to 89 or between 76 and 89 this is "Requires Improvement"

    3. If G5 is equal to 90, equal to 94 or between 90 and 94 this is " Good"

    4. If G5 is equal to 95 or above this is "Outstanding"

    If the 4 points above could be put into some sort of super formula that would be excellent. I'm also happy to use a different type of formula if it would be more suited.

    Thanks in advance.

  2. #2
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: IF function help!!

    Try

    =VLOOKUP(G5,{75,"Inadequate";76,"Requires Improvement";90,"Good";95,"Outstanding"},2,TRUE)


    You could put the lookup values in a table and refer to that.

  3. #3
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: IF function help!!

    Or

    =LOOKUP(G5,{0,75,89,94,95},{"Inadequate","Requires Improvement","Good","Outstanding"})
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  4. #4
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: IF function help!!

    Hi,

    One way

    Formula: copy to clipboard
    =IF(G5<=75,"Inadequate",IF(AND(G5>75,G5<=89),"Requires Improvement",IF(AND(G5>89,G5<=94),"Good","Outstanding")))
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  5. #5
    Forum Expert
    Join Date
    11-28-2012
    Location
    Guatemala
    MS-Off Ver
    Excel 2010
    Posts
    2,394

    Re: IF function help!!

    see the file. A grade table was created to enable changes
    Attached Files Attached Files

  6. #6
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: IF function help!!

    In a VLOOKUP table....
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  7. #7
    Registered User
    Join Date
    01-26-2015
    Location
    Newcastle, England
    MS-Off Ver
    2010
    Posts
    2

    Re: IF function help!!

    Quote Originally Posted by Glenn Kennedy View Post
    In a VLOOKUP table....

    This worked perfectly! Thank you.

    Thanks for all the responses. My job becomes a lot easier now.

+ 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. Replies: 13
    Last Post: 04-08-2014, 05:46 AM
  2. [SOLVED] IF Function referencing IsNumber, Match, Left function on separate sheets
    By Touch9713 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-12-2013, 10:09 PM
  3. [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
  4. Replies: 1
    Last Post: 03-21-2012, 11:22 AM
  5. Replies: 2
    Last Post: 03-20-2009, 01:29 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