+ Reply to Thread
Results 1 to 6 of 6

Multiple Ifs - Then Statement

  1. #1
    Registered User
    Join Date
    11-16-2012
    Location
    Denver, CO
    MS-Off Ver
    Excel 2010
    Posts
    19

    Multiple Ifs - Then Statement

    I am trying to write a formula as follows:

    First Credit Approved Result
    Kim Credit If A is "blank" and B is not "Credit", then "No First Name")
    Sue Credit
    Sam Credit
    Credit
    Jen Credit
    Andy Credit

    Thank you....

  2. #2
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Multiple Ifs - Then Statement

    Try this:

    =IF(AND(ISBLANK(A1),B1<>"Credit"),"No First Name","")

    - Moo

  3. #3
    Registered User
    Join Date
    11-16-2012
    Location
    Denver, CO
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Multiple Ifs - Then Statement

    When I type the formula, I am not getting a "No First Name" for the fourth row...

  4. #4
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Multiple Ifs - Then Statement

    Of course it won't, because your requirement was: If A is blank AND if B is not "Credit", so that is how I wrote the formula.

    You can change it to this and try: =IF(ISBLANK(A1),"No First Name",IF(B1<>"Credit","No Credit",""))

    That will check if A1 is blank. If it is, then "No First Name" will appear. If there is a first name, then it checks to see if B1 = Credit. If it is not there, the result will show "No Credit". If both conditions prove false (meaning there IS a first name and the word Credit is in B1, then the cell with the formula in it will remain blank.

    - Moo

  5. #5
    Registered User
    Join Date
    11-16-2012
    Location
    Denver, CO
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Multiple Ifs - Then Statement

    Okay. Thank you.

  6. #6
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Multiple Ifs - Then Statement

    You're welcome. Glad I could help.

    - Moo

+ 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