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  

ArgumentDescription
listThe List to check.
conditionThe condition to match against.
List.Select({1, 3, 5}, each _ > 2) equals {3 ,5}  

Show: