IsFalse (Filter)
Description
Tests if the argument's fields for a false (Boolean) value. Records that meet the conditions are passed on within the Flow.
Use
- Argument:
- Select an argument. (Boolean)
Example
A user wants to filter for records of all their inactive users. The user's active status is set in a field with a Boolean value.
Before using the IsFalse filter function on the Active user field:
Name | Active user |
---|---|
Jeff | true |
Alison | true |
Mark | false |
Veronica | true |
Brianna | false |
After using the IsFalse function on the Active user field:
Name | Active user |
---|---|
Mark | false |
Brianna | false |
Example situation
After having executed a function that returns a logical (Boolean) value TRUE or FALSE, this function is used together with the function IsTrue to create different branches in a Flow depending on the results of the logical value returned.
If you want to process PDF or other files in a different way, you can use the function EndsWith and check if the last three characters are "pdf".
Using the IsFalse filter function after the EndsWith function would let files other than PDF pass on that Flow branch.
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.