Training
Module
Select, sort, and measure objects using the pipeline - Training
This module explains how to manipulate objects in the pipeline by using commands that sort, select, and measure objects.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
List.Select(list as list, selection as function) as list
Returns a list of values from the list list
, that match the selection condition selection
.
Find the values in the list {1, -3, 4, 9, -2} that are greater than 0.
Usage
List.Select({1, -3, 4, 9, -2}, each _ > 0)
Output
{1, 4, 9}
Training
Module
Select, sort, and measure objects using the pipeline - Training
This module explains how to manipulate objects in the pipeline by using commands that sort, select, and measure objects.