List.Select
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.
Selects the items that match a condition.
List.Select(list as list, condition as function) as list
| Argument | Description |
|---|---|
| list | The List to check. |
| condition | The condition to match against. |
List.Select({1, 3, 5}, each _ > 2) equals {3 ,5}
Show: