List.AnyTrue Function in Power Query
The List.AnyTrue function returns true if any expression in a list is true.
Syntax
List.AnyTrue(list as list) as logical
Example: Determine if any of the expressions in the list are true.
Power Query M
let Source = List.AnyTrue({"ashish"= "ashish", false, 25 < 0}) in Source
The output of the above code is true.