List.MinN

Syntax

List.MinN(list as list, countOrCondition as any, optional comparisonCriteria as any, optional includeNulls as nullable logical) as list

About

Returns the minimum value(s) in the list, list. The parameter, countOrCondition, specifies the number of values to return or a filtering condition. The optional parameter, comparisonCriteria, specifies how to compare values in the list.

  • list: The list of values.
  • countOrCondition: If a number is specified, a list of up to countOrCondition items in ascending order is returned. If a condition is specified, a list of items that initially meet the condition is returned. Once an item fails the condition, no further items are considered. If this parameter is null, the single smallest value in the list is returned.
  • comparisonCriteria: [Optional] An optional comparisonCriteria value can be specified to determine how to compare the items in the list. If this parameter is null, the default comparer is used.

Example 1

Find the 5 smallest values in the list {3, 4, 5, -1, 7, 8, 2}.

Usage

List.MinN({3, 4, 5, -1, 7, 8, 2}, 5)

Output

{-1, 2, 3, 4, 5}