+ Reply to Thread
Results 1 to 2 of 2

Multiple Nested IF Statements

  1. #1
    Forum Contributor
    Join Date
    11-20-2011
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2007, Excel 2003, Excel 2010
    Posts
    284

    Multiple Nested IF Statements

    I have the following if statements that I am trying to combine into one. If the first condition is not met then I am trying to have it leave the value blank and move on to the next if statement. Thanks


    =IF(C7 =FrontEndApp!E7, IF(A8=Performance_Report!B83,C8))
    IF(D7 =FrontEndApp!E7, IF(A8=Performance_Report!B83,D8))
    IF(E7 =FrontEndApp!E7, IF(A8=Performance_Report!B83,E8))
    IF(F7 =FrontEndApp!E7, IF(A8=Performance_Report!B83,F8))
    IF(G7 =FrontEndApp!E7, IF(A8=Performance_Report!B83,G8))

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,062

    Re: Multiple Nested IF Statements

    You prob want something like

    IF(AND(A8=Performance_Report!B83,IF(C7=FrontEndApp!E7,C8,IF(D7=FrontEndApp!E7,D8,IF(E7=FrontEndApp!E7,E8,IF(F7=FrontEndApp!E7,F8,IF(G7=FrontEndApp!E7,G8,""))))))
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

+ 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