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