Skip to content

=IF

The IF function evaluates one or more conditions and returns a specified value when a condition is true. If none of the conditions are true, it can return a default false value (optional). Useful for conditional logic, validation, and branching workflows.

=IF(ConditionCheck; IfTrueReturnThis; AnotherConditionCheck; IfTrueReturnThis; OptionalIfFalseReturnThis)
  • ConditionCheck – The first condition to evaluate (can use comparison or formula functions).

  • IfTrueReturnThis – The value to return if the corresponding condition is true.

  • AnotherConditionCheck; IfTrueReturnThis; … – Additional conditions and their return values (optional).

  • OptionalIfFalseReturnThis – Value to return if none of the conditions are true (optional).

  • Evaluates each condition in order.

  • Returns the value corresponding to the first true condition.

  • If no conditions are true, returns the optional false value (if provided) or blank.

  • Conditions can use other formula functions like EQUALS, GTNUM, etc.

  • Semicolons (;) separate conditions and return values.

  • Formula functions are case sensitive and must be written in ALL CAPS.

=IF(=EQUALS([[Field: Job Name (Text)]]; Web Design); True; False)
  • Returns True if the Job Name field equals “Web Design”; otherwise, returns False.


IF, conditional logic, if statement, workflow formulas, true/false evaluation, process field conditions, formula function, branching logic