List.MatchesAll
Returns true if the condition function is satisfied by all values in the list.
Syntax
List.MatchesAll(
list as list,
condition as function
) as logical
Remarks
Returns true
if the condition function, condition
, is satisfied by all values in the list list
, otherwise returns false
.
Examples
Example #1
Determine if all the values in the list {11, 12, 13} are greater than 10.
List.MatchesAll({11, 12, 13}, each _ > 10)
Result:
true
Example #2
Determine if all the values in the list {1, 2, 3} are greater than 10.
List.MatchesAll({1, 2, 3}, each _ > 10)
Result:
false
Category
List.Selection