Function TRUE
Returns the special TRUE value, which means “yes”
Usage
TRUE or TRUE()
Examples
More information
TRUE is a special value returned by a function when the answer to its check is basically “yes”. For
example, CAN_FIND will return TRUE when it can find the subtext.
TRUE, along with its opposite FALSE, are used for conditions. The IF function and
@IF action will do different things when they receive a TRUE or a FALSE.
For this special function, the parentheses can be and are normally omitted. TRUE and
TRUE() are equivalent, so TRUE is preferred.