+ Reply to Thread
Results 1 to 14 of 14

Nested Ifs

Hybrid View

  1. #1
    Registered User
    Join Date
    05-30-2007
    Posts
    16

    Wink Nested Ifs

    Please help!!! I have been trying to create a nested If and am getting frustrated.

    I need to display FALSE in cell A5 where cell A1 displays the words "completed", "cancelled", "Rejected" or "Resolved" AND do not have a corresponding date in cell A2. If there is a date in A2 - I want to display true.

    However, if A1 displays the words "Approved", "Submitted for Approval" "In Development" or "App for IA" I want A5 to display True where there is a date in A2 and a False where there is no date in A2.

    Please help me - I'm losing the will to live!!

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Does this work for you?

    =OR(AND(OR(A1={"completed","cancelled","Rejected","Resolved"}),A2>0),AND(OR(A1={"Approved","Submitted for Approval","In Development","App for IA"}),A2>0))
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454
    Hi,

    Try this in A5

    =IF(MATCH(A1,{"completed","cancelled","Rejected","Resolved","Approved","Submitted for Approval","In Development","App for IA"},0)<=4,IF(ISBLANK(A2),TRUE,FALSE),IF(ISBLANK(A2),FALSE,TRUE))
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  4. #4
    Registered User
    Join Date
    05-30-2007
    Posts
    16

    Nested Ifs

    Thank you so Much!!! It worked and I really appreciate the help - as well as the quick reply!


    Thanks again

  5. #5
    Registered User
    Join Date
    05-30-2007
    Posts
    16

    Follow on.....

    Hi,

    Apprecaite the help last time, but now I am stuck again on the same spreadsheet.

    I used the formula given to me by NBVC and it worked. However, I now want to create another iF statement from the one given to me and it is not returning the desired information.

    For example: The formula is now pulling True or False statements. I now want to create an IF statement that enters a value from another cell dependant on whether the statement is TRUE or FALSE.

    I have attached my spreadsheet as I am finding this one difficult to explain.

    If you have a look at the worksheet 'CR Quickbase' - Cell G2 has the formula given by NBVC. If you have a look in cell H2 - you will hopefully get the gist of what I am trying to achieve. Once we have the relevant info in cell H2.

    The worksheet 'CR Tracking' will then 'Lookup' the value in cell H2 and return the relevant data.

    Please help - it's not as complicated as I am making it sound - just have a look at the attachment.

    Thanks in advance
    Attached Files Attached Files

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    The True/False strings should not be in quotes.

    Try:

    =IF(G2=TRUE,$A$38,IF(G2=FALSE,$A$39,"")) copied down.

    EDIT:

    come to think of it, your formula in G will always give either TRUE or FALSE, so the formula in H can be further simplified to:

    =IF(G2,$A$38,$A$39)
    Last edited by NBVC; 06-06-2007 at 10:29 AM.

  7. #7
    Registered User
    Join Date
    05-30-2007
    Posts
    16
    It works, thanks again for your help

  8. #8
    Registered User
    Join Date
    05-30-2007
    Posts
    16

    Slight error in orig info given.....

    Hi,

    The information I gave to you in the first forum was incorrect.

    I needed the formula to work as follows:

    1. If the status is - 'Complete', 'cancelled', 'rejected', 'on-hold' and there is no date in cell F2 - then return 'False'. If there is a date in cell F2 - then return 'True'. However,

    2. If the status is - 'Approved', 'submitted for approval', 'In dev','Appfor IA' and there is no date in cell F2 - then return no value (a blank cell). If there is a date - return 'True'

    Is this possible?? Please tell me it is.

    THANK YOU

+ 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