List.Min Function in Power Query

The List.Min function returns the minimum item in a list, or the optional default value if the list is empty.

Syntax

List.Min(list as list, optional default as any, optional comparisonCriteria as any, optional includeNulls as nullable logical) as any

Example: Return the minimum value in the list.

Power Query M

let
    Source = List.Min({13, 47, 345, -561, 77, 852, 12}, 3)
in
    Source  

The output of the above code is -561.