List.AnyTrue

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Returns true if any expression in a list in true

List.AnyTrue(list as list) as logical

ArgumentDescription
listThe List to check.
List.AnyTrue({2=0, false, 1 < 0 }) equals false  

Show: