Category: Logical function
This function creates a Boolean value equal to FALSE.
Use this function to set, or test for, a Boolean FALSE value.
This function does not take any arguments.
Return value type: Boolean (FALSE)
A Boolean FALSE value is not the same as a text 'FALSE' value. Refer to the Type system link in the "See also" section for more information.
Using False() within an If function:
if([ThisValue]=[ThatValue],TRUE(), FALSE()) //Returns Boolean FALSE if the two values are not equal.