IF

The IF function in Shedmate performs a logical test and returns a specified value if the test is true and another specified value if the test is false.

Syntax:

IF(condition, value_if_true, value_if_false)

Parameters:

condition (required): The condition to be tested. It can be any expression that results in true (TRUE) or false (FALSE).
value_if_true (required): The value to be returned if the condition is true.
value_if_false (required): The value to be returned if the condition is false.

Usage example:

Last updated