IF statement on Excel:
Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates to FALSE
IF (  logical_test,     value_if_true,      value_if_false  )

OR Statement on Excel:
Returns TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE
OR  (  logical1,   logical2,...)