+ Reply to Thread
Results 1 to 4 of 4

Nested IF Condition Excel 2010

  1. #1
    Forum Contributor
    Join Date
    11-10-2019
    Location
    India
    MS-Off Ver
    2013
    Posts
    350

    Nested IF Condition Excel 2010

    Hello,

    I have attached an excel sheet and trying to get results in B1 as under

    Requesting help please

    If A1 between 81% and 89% then B1 is 75%
    If A1 is less than 80% then B1 is 50%
    If A1 is >90% then C1 is 100%
    Attached Files Attached Files

  2. #2
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: Nested IF Condition Excel 2010

    Try below formula
    =IF(A1="","",LOOKUP(A1,{0,0.8,0.9},{0.5,0.75,1}))
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  3. #3
    Valued Forum Contributor
    Join Date
    11-22-2014
    Location
    Arizona, USA
    MS-Off Ver
    Office 365
    Posts
    973

    Re: Nested IF Condition Excel 2010

    I assume that is a typo for C1 to be 100 percent rather you would like B1 to reflect this...

    To keep it to a basic Nested IF...

    =IF(A1>=.9,1,IF(A1>=.8,.75,.5))

    This says IF A1 is Greater than or Equal to 90% Then it is 100%, Otherwise IF A1 is Greater Than or Equal to 80% then it is 75% Otherwise "ELSE" it is 50%.

    By nesting the IFs as you asked and starting with one end or the other we are able to call on the next top/bottom of tier as the previous tier will have already filtered out those that meet its criteria.

    Few things - You have gaps in your ratings. What you have asked is that if the value of A1 is ABOVE 90%, Between 81% AND 89% OR LESS than 80%.... This means that you have left everything from 80.00% Through 80.99%, 89.01% - 90% completely in the dark and at risk of being an error if you do not have a catch, but if you are not careful your catch all could be a lie for someone that should be in a bucket...

    I fixed it in the above example simply with >= that equals sign as well as shifting the exact point in ref to each tier.
    -If you think you are done, Start over - ELeGault

  4. #4
    Forum Contributor
    Join Date
    11-10-2019
    Location
    India
    MS-Off Ver
    2013
    Posts
    350

    Re: Nested IF Condition Excel 2010

    Thank you for both of you

+ 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. how many nested if statements in excel 2010
    By Terressa in forum Excel General
    Replies: 1
    Last Post: 07-27-2015, 08:20 AM
  2. [SOLVED] Nested IF/ AND / OR formula being rejected by Excel 2010
    By ids in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-14-2014, 11:39 AM
  3. Help With Nested IF Functions Excel 2010
    By mrsdeapsleap in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 06-24-2014, 02:17 PM
  4. [SOLVED] Nested IF issue, I think! Excel 2010
    By Omegaman2 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-30-2013, 02:24 AM
  5. How Many Nested IF Functions Can Excel 2010 Handle
    By boohah in forum Excel General
    Replies: 4
    Last Post: 01-08-2013, 06:16 PM
  6. Nested IF / AND statements excel 2010
    By cossie2k in forum Excel General
    Replies: 2
    Last Post: 06-12-2012, 08:30 AM
  7. Excel 2010 Nested IF / AND Statement
    By snikrs11 in forum Excel General
    Replies: 5
    Last Post: 03-04-2011, 12:43 PM

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