+ Reply to Thread
Results 1 to 11 of 11

Nested "IF" with multiple criteria. Please help!

  1. #1
    Registered User
    Join Date
    09-12-2018
    Location
    St. Louis, MO
    MS-Off Ver
    Microsoft Office Professional Plus 2013
    Posts
    6

    Nested "IF" with multiple criteria. Please help!

    I am stuck.

    I am working on a scorecard with several different metrics. of those metrics I have one called BA. The people that are within the scorecard are categorized as either "A" or "B"

    "A" point values are as follows: Greater than or equal to 95% is worth 60 points, Greater than or equal to 93% to 94.99% is worth 45 points, Greater than or equal to 90% to 92.99% is worth 30 points, anything less than 90% is worth 0 points.

    "B" point values are as follows: Greater than or equal to 93% is worth 60 points, Greater than or equal to 90% to 92.99% is worth 45 points, Greater than or equal to 87% to 87.99% is worth 30 points, anything less than 87% is worth 0 points.


    the A/B categorization column is called LOB. I have only halfway figured out the formula without even adding the "B" value options yet. The formula I have so far is only yielding 60 for those 95% or greater, everything else is yielding "FALSE". I keep getting erred when posting the Formula, so apparently I cant even figure out how to use a forum. I could use a hug.
    Crystal Rose

  2. #2
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,504

    Re: Nested "IF" with multiple criteria. Please help!

    put spaces around any greater than or lesser than symbols, that will avoid the sucri error.
    it would be helpful to know how the A and B people are linked. Are both formulas supposed to apply to the same data?
    possibly a sample sheet with expected results would help.
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  3. #3
    Registered User
    Join Date
    09-12-2018
    Location
    St. Louis, MO
    MS-Off Ver
    Microsoft Office Professional Plus 2013
    Posts
    6

    Re: Nested "IF" with multiple criteria. Please help!

    I've attempted to attach the worksheets associated
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    09-12-2018
    Location
    St. Louis, MO
    MS-Off Ver
    Microsoft Office Professional Plus 2013
    Posts
    6

    Re: Nested "IF" with multiple criteria. Please help!

    The formula in question is on the F-BA tab in the BA Weight Column

  5. #5
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,504

    Re: Nested "IF" with multiple criteria. Please help!

    Basically there are two different options for you...
    =IFERROR(LOOKUP(C2,{0,0.9,0.93,0.95},{0,30,45,60}),"")
    or
    =IF([@BA]="","",IF([@BA]<0.9,0,IF([@BA]<0.93,30,IF([@BA]<0.95,45,60))))
    or without the table references...
    =IF(C2="","",IF(C2<0.9,0,IF(C2<0.93,30,IF(C2<0.95,45,60))))
    or without accounting for blanks...
    =IF(C2<0.9,0,IF(C2<0.93,30,IF(C2<0.95,45,60)))
    didn't know what you wanted done with blanks so I added an if="","" then the rest of the formula (last formula given).
    Last edited by Sam Capricci; 09-12-2018 at 02:42 PM.

  6. #6
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,504

    Re: Nested "IF" with multiple criteria. Please help!

    but based on what you posted I can't tell what you want done with the "B" section.
    depending on how you want it treated I'd consider lookup tables.

  7. #7
    Registered User
    Join Date
    09-12-2018
    Location
    St. Louis, MO
    MS-Off Ver
    Microsoft Office Professional Plus 2013
    Posts
    6

    Re: Nested "IF" with multiple criteria. Please help!

    I've just tried all those formula options in and they've all yielded the same result: 60 in every single E cell. :-/
    At this point I'm not even concerned about the B option, its only used for those agents that have only been on the floor for a short period.
    Did you try them out and get results showing other than 60?

  8. #8
    Registered User
    Join Date
    09-12-2018
    Location
    St. Louis, MO
    MS-Off Ver
    Microsoft Office Professional Plus 2013
    Posts
    6

    Re: Nested "IF" with multiple criteria. Please help!

    OH WAIT!! I got it to work!! I just changed one thing. I used the second formula you provided but exchanged BA with LOB within the logical test. YOU ARE A LIFE SAVER!!!!!!

  9. #9
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,504

    Re: Nested "IF" with multiple criteria. Please help!

    never mind since you got one or both to work.
    good.
    now, if you want to attack the "B" issue let me know.

  10. #10
    Registered User
    Join Date
    09-12-2018
    Location
    St. Louis, MO
    MS-Off Ver
    Microsoft Office Professional Plus 2013
    Posts
    6

    Re: Nested "IF" with multiple criteria. Please help!

    Ill be sure to let you know. Thank you so much!

  11. #11
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,504

    Re: Nested "IF" with multiple criteria. Please help!

    You're welcome AND thank you for the rep!

+ 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: 11
    Last Post: 09-24-2017, 11:53 AM
  2. Replies: 2
    Last Post: 07-24-2017, 02:19 AM
  3. [SOLVED] Nested HLOOKUP returns "FALSE" in cell where result should be "0.00"
    By gammccubbin in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-09-2016, 09:49 AM
  4. [SOLVED] Auto-populate "Yes" "No" based on multiple criteria.
    By jtmoore in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-18-2014, 09:12 AM
  5. Replies: 3
    Last Post: 04-16-2014, 10:00 AM
  6. Replies: 1
    Last Post: 01-15-2014, 08:53 AM
  7. [SOLVED] Find multiple "text" criteria and return as ""Yes" in Matrix
    By bertrand82 in forum Excel General
    Replies: 11
    Last Post: 04-30-2012, 09:20 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