+ Reply to Thread
Results 1 to 11 of 11

Nested IF statements with specific conditions

  1. #1
    Registered User
    Join Date
    06-09-2015
    Location
    Statesville, NC
    MS-Off Ver
    365
    Posts
    86

    Nested IF statements with specific conditions

    Hello all,

    I am running into an issue with our bonus pay plan spreadsheet. Below are the conditions that have to be met in order for the agent to receive the bonus:

    Leads and Assistant Leads will receive a bonus of $1.25 / hour if the following team and individual goals are met each week:

    1. Call center averages 10% or less abandoned (missed) calls
    2. CSR Agents as a whole, have an average talk time of 55% for the week
    3. Lead and Assistant Lead individual goal of 33% talk time

    OR

    Leads and Assistant Leads will receive a bonus of $1.25 / hour if the following team and individual goals are met each week:

    1. Call center averages 10.1 - 13% abandoned (missed) calls
    2. CSR Agents as a whole, have an average talk time of 55% for the week
    3. Lead and Assistant Lead individual goals talk time

    My problem is coming in under column AA (the Yes,No column). Here is the formula that is currently being used and I can't figure out where I went wrong.

    =IF($F$1<=13;IF(X14>=0.33;IF($I$1>=50;"Yes";"No");"No");IF(X14>=U14;"Yes";"No"))

    I have also attached a copy of the spreadsheet as well. Based on the requirements, all of those YES's should be NO's. Any help would be greatly appreciated.
    Attached Files Attached Files

  2. #2
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,737

    Re: Nested IF statements with specific conditions

    i may need it a little clearer

    F1 = Abandoned rate
    X? = Individual Average talk time - 33% for both
    I1 = CSR talk time = 55%

    so the only thing that changes is the
    point 1

    in rule one 10% or less
    in rule 2 between 10.1 and 13

    BUT the payments are the same

    So basically its just 13% or less

    in your formula I dont understand from the rules why you are using 50
    IF($I$1>=50;"Yes";"No")
    for CSR Talk Time


    $F$1 <= 0.13 (13% CSR abandoned)
    AND
    $I$1 > = 0.55 (55% CSR talk time)

    AND
    individual
    X? > = 0.33 = 33%

    can we change =IF($F$1<=13;IF(X14>=0.33;IF($I$1>=50;"Yes";"No");"No");IF(X14>=U14;"Yes";"No"))
    to
    =IF( AND( $F$1 < = 0.13 , $I$1 > = 0.55 , X14 > = 0.33 ) , "YES", "NO)

    edit, I'm in UK, so replace the , with a ;
    =IF( AND( $F$1 < = 0.13 ; $I$1 > = 0.55 ; X14 > = 0.33 ) ; "YES" ; "NO)

    X14 v U14 = target v indivdual
    ????? is that correct

    X14 > =0.33 is this OR
    X14 > = U14 (target)
    ?which to use ?
    Last edited by etaf; 02-25-2018 at 10:22 AM.
    Wayne
    if my assistance has helped, and only if you wish to , there is an "* Add Reputation" on the left hand side - you can add to my reputation here

    If you have a solution to your thread - Please mark your thread solved do the following: >
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

  3. #3
    Registered User
    Join Date
    06-09-2015
    Location
    Statesville, NC
    MS-Off Ver
    365
    Posts
    86

    Re: Nested IF statements with specific conditions

    I corrected the conditions. The lesser percent abandoned requires a lesser CSR Total Talk Time of 50%. The higher percent abandoned requires the higher talk time of 55%.

    Correct, the payments are still the same however, the conditions are different. Now that I have adjusted the conditions, it should follow a lot smoother.

    Leads and Assistant Leads will receive a bonus of $1.25 / hour if the following team and individual goals are met each week:

    1. Call center averages 10% or less abandoned (missed) calls
    2. CSR Agents as a whole, have an average talk time of 50% for the week
    3. Lead and Assistant Lead individual goal of 33% talk time

    OR

    Leads and Assistant Leads will receive a bonus of $1.25 / hour if the following team and individual goals are met each week:

    1. Call center averages 10.1 - 13% abandoned (missed) calls
    2. CSR Agents as a whole, have an average talk time of 55% for the week
    3. Lead and Assistant Lead individual goals talk time


    F1 = Abandoned rate
    X? = Individual Average talk time =
    1. If the % abandoned is less than 10% AND the CSR Talk Time is 50% or higher THEN their individual average talk time is a set 33% or greater
    2. If the % abandoned is between 10.1% and 13% AND the CSR Talk Time is 55% or higher THEN their individual average talk time is greater than or equal to the % TT Target (column U)
    I1 = CSR talk time = This number can vary. At the moment we can't give it a set 55% because of the multiple conditions.

    So with the breakdown, I need to be able to combine the following 2 formulas:

    =IF( AND( $F$1 < = 13 , $I$1 > = 0.55 , X14 > = U14 ) , "YES", "NO)

    =IF( AND( $F$1 < = 10 , $I$1 > = 0.50 , X14 > = 0.33 ) , "YES", "NO)



    $F$1 <= 0.13 (13% CSR abandoned)
    AND
    $I$1 > = 0.55 (55% CSR talk time)

    AND
    individual
    X? > = X?

    =IF( AND( $F$1 < = 13 , $I$1 > = 0.55 , X14 > = U14 ) , "YES", "NO)

    $F$1 <= 0.10 (10% CSR abandoned)
    AND
    $I$1 > = 0.50 (50% CSR talk time)

    AND
    individual
    X? > = 0.33 = 33%

    =IF( AND( $F$1 < = 0.10 , $I$1 > = 0.50 , X14 > = 0.33 ) , "YES", "NO)

  4. #4
    Registered User
    Join Date
    06-09-2015
    Location
    Statesville, NC
    MS-Off Ver
    365
    Posts
    86

    Re: Nested IF statements with specific conditions

    [QUOTE=etaf;4851890i may need it a little clearer[/QUOTE]

    Let me know if the above reply helps.

    Thanks!!

  5. #5
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,737

    Re: Nested IF statements with specific conditions

    you can combine the two with an OR - BUT i Suspect its more complicated than THAT
    =IF( AND( $F$1 < = 13 , $I$1 > = 0.55 , X14 > = U14 ) , "YES", "NO)
    =IF( AND( $F$1 < = 10 , $I$1 > = 0.50 , X14 > = 0.33 ) , "YES", "NO)

    =IF( OR ( AND( $F$1 < = 13 , $I$1 > = 0.55 , X14 > = U14 ), AND ( $F$1 < = 10 , $I$1 > = 0.50 , X14 > = 0.33 ) ) , "YES", "NO")

    what takes precedence as a TEST
    we could probably do a more complicated IF nested test
    1st checking IF $I$1 > = 0.55

    but maybe the OR works
    Last edited by etaf; 02-25-2018 at 02:29 PM.

  6. #6
    Registered User
    Join Date
    06-09-2015
    Location
    Statesville, NC
    MS-Off Ver
    365
    Posts
    86

    Re: Nested IF statements with specific conditions

    Quote Originally Posted by etaf View Post
    =IF( OR ( AND( $F$1 < = 13 , $I$1 > = 0.55 , X14 > = U14 ), AND ( $F$1 < = 10 , $I$1 > = 0.50 , X14 > = 0.33 ) ) , "YES", "NO)
    Thanks. I tried with the combined statement and it worked in all scenarios except for scenario A and C below. Scenarios A and C are an automatic NO if the % Abandoned and the CSR TT fall into those categories.

    % Aban CSR TT % TT Yes/No
    A. <10 <49.9 automatic NO
    B. <10 >=50 >=33 YES
    C. 10.1-13 <54.9 automatic NO
    D. <13 >=55 X?>U? YES

    I'm not sure how to combine the formula to make all 4 scenarios work.

  7. #7
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,737

    Re: Nested IF statements with specific conditions

    IS that

    A
    $F$1 <= 0.10 (CSR abandoned)
    AND
    $I$1 < 0.499 ( CSR talk time)
    OR
    C
    $F$1 <= 0.13 , $F$1 >= 10.1 (CSR abandoned)
    AND
    $I$1 < 0.549 (CSR talk time)

    we can setup

  8. #8
    Registered User
    Join Date
    06-09-2015
    Location
    Statesville, NC
    MS-Off Ver
    365
    Posts
    86

    Re: Nested IF statements with specific conditions

    Quote Originally Posted by etaf View Post
    IS that

    A
    $F$1 <= 0.10 (CSR abandoned)
    AND
    $I$1 < 0.499 ( CSR talk time)
    OR
    C
    $F$1 <= 0.13 , $F$1 >= 10.1 (CSR abandoned)
    AND
    $I$1 < 0.549 (CSR talk time)

    we can setup

    Yes, absolutely

  9. #9
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,737

    Re: Nested IF statements with specific conditions

    =IF( OR ( AND( $F$1 < = 13 , $I$1 > = 0.55 , X14 > = U14 ), AND ( $F$1 < = 10 , $I$1 > = 0.50 , X14 > = 0.33 ) ) , "YES", "NO")

    we could add at the beginning of the formula

    OR( AND ( $F$1 <= 0.10 , $I$1 < 0.499 ) , AND ( $F$1 <= 0.13 , $F$1 >= 10.1 , $I$1 < 0.549 ))

    =IF(OR(AND($F$1<=0.1,$I$1<0.499),AND($F$1<=0.13,$F$1 >=10.1,$I$1< 0.549)),"NO",IF(OR(AND($F$1<= 13,$I$1 >= 0.55,X14>= U14), AND($F$1<= 10,$I$1>= 0.5,X14>= 0.33)), "YES", "NO"))

    I dont like it , and sure there maybe a simplier formula where we dont have to have "NO" twice
    BUT it works - so i can look at later in the week if i get a chance
    or maybe someone else will provide a better solution

  10. #10
    Registered User
    Join Date
    06-09-2015
    Location
    Statesville, NC
    MS-Off Ver
    365
    Posts
    86

    Re: Nested IF statements with specific conditions

    Quote Originally Posted by etaf View Post
    =IF(OR(AND($F$1<=0.1,$I$1<0.499),AND($F$1<=0.13,$F$1 >=10.1,$I$1< 0.549)),"NO",IF(OR(AND($F$1<= 13,$I$1 >= 0.55,X14>= U14), AND($F$1<= 10,$I$1>= 0.5,X14>= 0.33)), "YES", "NO"))
    Awesome! Thanks for all of your help etaf!

  11. #11
    Forum Expert etaf's Avatar
    Join Date
    10-22-2004
    Location
    Wittering, West Sussex, UK
    MS-Off Ver
    365 (Mac OSX) (16.83 (24031120))
    Posts
    8,737

    Re: Nested IF statements with specific conditions

    you are welcome

+ 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: 3
    Last Post: 01-03-2015, 06:22 PM
  2. Nested IF statements returning cell value not specific text
    By kelseyrae27 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-03-2015, 05:26 PM
  3. [SOLVED] Nested if statements containing multiple and statements
    By John M. in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 06-22-2014, 11:48 PM
  4. Rounding values to specific range or increased nested if statements??
    By 311guy in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-23-2011, 12:58 PM
  5. Nested If statements / logic statements
    By Brainless_09 in forum Excel General
    Replies: 3
    Last Post: 06-17-2009, 02:59 PM
  6. Replies: 12
    Last Post: 05-15-2009, 08:38 AM
  7. Multiple conditions in nested IF statements
    By havfunonline2 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-09-2009, 05:36 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