List.AllTrue
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 all expressions in a list are true
List.AllTrue(list as list) as logical
| Argument | Description |
|---|---|
| list | The List to check. |
List.AllTrue({true, 2=2}) equals true
Show: