All
This Flow Script tutorial explains how to use the All function with syntax and examples.
Description
Obsolete function.
The All function returns a boolean value indicating whether the predicate expression holds true for all rows in the table.
The Any function can be used to achieve the same result as All.
Syntax
The syntax for the All function is:
All(table, predicate)
Parameters
table - the table which is to be checked.
predicate - the value to be checked in the table if true or not.
Returns
The All function returns True or False.
Example
Let's look at some All function examples and explore how to use the All function.
Last updated