TRIGGER_IS_FLIPPED

Description

Returns TRUE if the specified field's value has changed in the current transaction (i.e., the field was updated or flipped from its previous value).

Syntax

TRIGGER_IS_FLIPPED(field_name) -> Boolean

Parameters

ParameterData TypeRequiredDescription
field_nameStringYesThe name of the field to check for value change.

Example

TRIGGER_IS_FLIPPED("IsClosed")
-- Returns TRUE if IsClosed was flipped from FALSE to TRUE in this transaction.
-- Typically used with TRIGGER_FLIPPER() to detect one-time manual triggers in before-insert or before-update contexts.

Related Formula