Logic test with 2 conditions

Solved
raveno39 Posted messages 53 Status Member -  
raveno39 Posted messages 53 Status Member -
Hello,

in Excel, I want to perform a logical test (IF condition)

IF (a = field; or = "") = ""

IF (a # field; or# "" ) = 1

Thank you for your responses

Configuration: Windows Vista / Firefox 7.0

5 answers

  1. Heremion Posted messages 564 Status Member 102
     
    Hello Raveno39,

    =IF(OR(A1=5;A1="");"";0)
    =IF(OR(A1<>5;A1<>"");1;0)
    --
    You should always consider accepting a post that gets you out of trouble
    3