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