+ Reply to Thread
Results 1 to 6 of 6

Complex IF AND OR statement

  1. #1
    Registered User
    Join Date
    09-21-2012
    Location
    Illinois
    MS-Off Ver
    Excel 201004
    Posts
    11

    Complex IF AND OR statement

    Hello,

    I am trying to write a statement that will output "ERROR" if any cell L, K or J has a value in it, while any cell L, K or J in the same row is blank. The statement below works if only L, J or K is filled. It works if J and K are filled and L is blank and if J and L are filled but K is blank. However, if only K and L are filled and J is blank it outputs "OK".

    Can anyone tell me where I have gone wrong?

    =IF(AND($K4<=180,$K4>=0,$L4<=180,$L4>=0,$L4>$K4,$K4>$L3),"OK",IF(AND($L4="",$K4="",$J4=""),"",IF(OR($L4>=0,$K4>=0,$J4>=0,OR(AND($L4="",$K4="",$J4=""))),"ERROR","")))

    See attached example.

    Thanks!
    Attached Files Attached Files

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Complex IF AND OR statement

    Hi

    One way is put this IN FRONT of your formula.

    =IF(OR(J4="",K4="",L4=""),"ERROR",YOUR FORMULA.
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Registered User
    Join Date
    09-21-2012
    Location
    Illinois
    MS-Off Ver
    Excel 201004
    Posts
    11

    Re: Complex IF AND OR statement

    That works better...but I need it to output a blank cell if all three of them are blank and an error if one or two are filled but not the other(s)

    IF(AND($L4="",$K4="",$J4=""),"",IF(OR($L4>=0,$K4>=0,$J4>=0,OR(AND($L4="",$K4="",$J4=""))),"ERROR","")))))

    which is that part of the formula.

    Any ideas?

  4. #4
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Complex IF AND OR statement

    Pls try this shorter one.

    =IF(COUNT(J4:L4)=3,"OK",IF(COUNT(J4:L4)=0,"","ERROR"))

  5. #5
    Registered User
    Join Date
    09-21-2012
    Location
    Illinois
    MS-Off Ver
    Excel 201004
    Posts
    11

    Re: Complex IF AND OR statement

    Thank you very much. I had to add a count to the first part of my statement also.

    =IF(AND($K4<=180,$K4>=0,$L4<=180,$L4>=0,$L4>$K4,$K4>$L3,COUNT(J4:L4)=3),"OK",IF(COUNT(J4:L4)=3,"OK",IF(COUNT(J4:L4)=0,"","ERROR")))

  6. #6
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Complex IF AND OR statement

    You are welcome.

    Thanks for the reb*

+ 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