List.Select
Returns a list of values that match the condition.
function (list
as list,selection
as function) as list
Returns a list of values from the list
list
, that match the selection condition selection
.List.Selection
Find the values in the list {1, -3, 4, 9, -2} that are greater than 0.
List.Select({1, -3, 4, 9, -2}, each _ > 0)
{1, 4, 9}
Last modified 4yr ago