Table of Contents

True()

Category: Logical function


Description

This function creates a Boolean value equal to TRUE.


Use cases

Use this function to set, or test for, a Boolean TRUE value.


Arguments

This function does not take any arguments.

Return value type: Boolean (TRUE)


Remarks

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.


Examples

Using True() within an If function:

if([ThisValue]=[ThatValue],TRUE(), FALSE()) //Returns Boolean TRUE if the two values are equal.


See also