+ Reply to Thread
Results 1 to 3 of 3

Nested If Formula

  1. #1
    Registered User
    Join Date
    09-20-2012
    Location
    Memphis, TN
    MS-Off Ver
    Excel 2007
    Posts
    2

    Nested If Formula

    Column A Total
    Column B Current %
    Column C Total Time
    Column D Criteria 0-1.99 = 10%, 2-4.99 = 15%, 5-8.99 = 20% and >8.99 = 25%

    My formula looks at Current % (in Column B) and Total Time (in Column C) Based on the following criteria: 0-1.99 = 10%, 2-4.99 = 15%, 5-8.99 = 20% and >8.99 = 25%. When comparing Total Time in Column C to the Criteria outlined in Column D the result should be the same as Column B, if the current exceeds the criteria, if not then the result should return a result based on the criteria. My formula returns the correct result if the Current % exceeds my critera But returns TRUE instead of the Criteria %.

    =IF(B3>IF(C3<=1.99,10%,IF(AND(C3>1.99,C3<=4.99),15%,IF(AND(C3>4.99,C3<=8.99),20%,25%))),B3,IDC3<IF(C3<=1.99,10%,IF(AND(C3>1.99,C3<=4.99),15%,IF(AND(C3>4.99,C3<=8.99),20%,25%))))
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    10-17-2012
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    39

    Re: Nested If Formula

    I'm not sure if I completely understand what you're trying to accomplish, but I think the problem is with one of the last If statements. Try using the code below in row 3 and copy it down and see if it works as expected. All I did was removed the "IDC4<" part of the formula.

    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    09-20-2012
    Location
    Memphis, TN
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Nested If Formula

    Snax....it worked...my issue is Solved Thank You for your quick response!

+ 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