IsTrue (Filter)

Description

Tests if the argument's fields are a true (Boolean) value. Records that meet the conditions are passed on within the Flow.

This function is typically used to branch a Flow after having used a comparison function (E.g., Contains, IsGreaterThan, IsGreaterThanOrEqual, IsBlank, IsNull, etc.)

Users can create a branch with the IsTrue and another branch with the IsFalse filters to guarantee that all the records will be processed as the comparison will always be true or false.

More complex Flow branching can be done using the filter Contains where branching is not binary. When using the Contains filter, ensure that all records are processed. If a record fails all the comparisons, it will be filtered out.

Use

  • Argument:
    • Select an argument. (Boolean)

Example

A user wants to filter for records of all their active users. The user's active status is set in a field with a Boolean value.

Before using the IsTrue filter function on the Active user field:

NameActive user
Jefftrue
Alisontrue
Markfalse
Veronicatrue
Briannafalse

After using the IsTrue function on the Active user field:

NameActive user
Jefftrue
Alisontrue
Veronicatrue

Hero Platform_ Example

An example of this function can be found in Hero Platform_'s library of examples.

Download the example titled "function_IsTrue_IsFalse" to see an example of this function. 

Type

Filter