List.Select
शर्त से मेल खाने वाले मानों की एक सूची लौटाता है.
Syntax
List.Select(
list as list,
selection as function
) as list
Remarks
सूची list
के उन मानों को लौटाता है, जो चयन शर्त selection
से मेल खाते हैं.
Examples
Example #1
सूची {1, -3, 4, 9, -2} के वे मान प्राप्त करें जो 0 से बड़े हैं.
List.Select({1, -3, 4, 9, -2}, each _ > 0)
Result:
{1, 4, 9}
Category
List.Selection