THEN keyword

Used with the IF keyword.

Syntax

IF condition THEN

Parameters

  • condition: Any expression that can be evaluated as TRUE or FALSE (required)

Example

IF 45 > 10 THEN
'Do something
END IF

Go back to list of Keywords.