+ Reply to Thread
Results 1 to 10 of 10

IF Statement

  1. #1
    Registered User
    Join Date
    03-26-2012
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2010
    Posts
    21

    IF Statement

    Hi, I am very close with my formula here, the only problem is I want the Criteria to be in W39 contains Completed rather than ='s it. I have 2 records I want it to find - "completed" and "Contractor advised completed" but if I put that into the formula like I have done below, it only works for jobs that are completed and not for Contractor advised completed.

    =IF(AND(CM39=1,W39="Completed",W39="Contractor Advised Completed",AA39<>"Payment On Account"),1,0)

    Any ideas?

    Thanks

  2. #2
    Valued Forum Contributor
    Join Date
    03-16-2012
    Location
    Aarhus, Denmark
    MS-Off Ver
    Excel 2007
    Posts
    992

    Re: IF Statement

    I'm not sure I fully understand what you are trying to do, but I beleive your formula would always return "0", since you have 2 mutually excluding logical tests in an =AND() statement. W39 cannot be equal to both "Completed" and "Contractor Advised Completed". Maybe you want to use =OR() instead?
    Sincerely
    S?ren Larsen

    "Give a man a fish, and you'll feed him for a day. Give a man a fishing rod, and he'll steal your yacht!"

  3. #3
    Forum Contributor Russell Dawson's Avatar
    Join Date
    03-01-2012
    Location
    Yorkshire, England
    MS-Off Ver
    2007
    Posts
    608

    Re: IF Statement

    Don't understand the Criteria to be in W39 contains Completed rather than ='s it.

    Just guessing, but is something other than "Completed" being entered?

    Edit:

    Are you using drop down menus for data entry? If not that could solve it for the future. Can you post a workbook?
    Last edited by Russell Dawson; 03-28-2012 at 06:14 AM. Reason: More thoughts
    If I helped, please don't forget to add to my reputation. (click on the star below the post)

    If the problem is solved, please: Select Thread Tools (on top of your 1st post) -> Mark this thread as Solved.

    Failure is not falling down but refusing to get up.

  4. #4
    Registered User
    Join Date
    03-26-2012
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: IF Statement

    I want it to find cells that contain the word completed, not equals the word completed.

    =IF(AND(CM39=1,W39="Completed",W39="Contractor Advised Completed",AA39<>"Payment On Account"),1,0) -= This doesn't work as Soren suggested above. So I have tried:

    =IF(AND(CM39=1,W39="Completed",AA39<>"Payment On Account"),1,0) - But I need the W39="Completed" to give me a cell that contains the word completed

  5. #5
    Valued Forum Contributor
    Join Date
    03-16-2012
    Location
    Aarhus, Denmark
    MS-Off Ver
    Excel 2007
    Posts
    992

    Re: IF Statement

    Try using =FIND() and search for "completed". If "completed" is found in your cells it will return its position otherwise it will return #VALUE.

  6. #6
    Valued Forum Contributor
    Join Date
    03-16-2012
    Location
    Aarhus, Denmark
    MS-Off Ver
    Excel 2007
    Posts
    992

    Re: IF Statement

    Try this:

    =IFERROR(IF(AND(CM39=1,FIND("completed",W39)>0,AA39<>"Payment On Account"),1,0),0)

  7. #7
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: IF Statement

    If it's just the 2 possibilities for W39 containing "completed" then a simple RIGHT() will do:

    =IF(AND(CM39=1,Right(W39,9)="Completed",AA39<>"Payment On Account"),1,0)

  8. #8
    Registered User
    Join Date
    03-26-2012
    Location
    Wiltshire, England
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: IF Statement

    Neither of these formulas work unfortunately. No idea why. I can't believe excel doesn't have a simple symbol for contains rather than equals or more than etc....?

    I have tried googling it with no luck?

  9. #9
    Valued Forum Contributor
    Join Date
    03-16-2012
    Location
    Aarhus, Denmark
    MS-Off Ver
    Excel 2007
    Posts
    992

    Re: IF Statement

    Does the formula work, but return the wrong values, or do you get an error?

    If you get an error then you might have to replace commas with semicolons; i don't know the English Excel punctuation.
    Last edited by Søren Larsen; 03-28-2012 at 08:57 AM.

  10. #10
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: IF Statement

    Perhaps it's time to provide a small sample file.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

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