Function
Description
This function is used to pick up the minimum value from a group of values referred to by the first argument together. The second argument, if there is one, gives the group by field name.
Arguments
Return type
The result type relies on the first argument. It may be Number, Currency, String, Date, Time, DateTime, or Boolean if the data type of each element in the first argument is Number, Currency, String, Date, Time, DateTime or Boolean respectively.
Examples
Number x = Minimum([1.0, 2.0, 3.0, 4.5, 45.0, 67.0])Number x[6] = [1.0, 2.0, 3.0, 4.5, 45.0, 67.0];
Number y = Minimum(x)Number x = Minimum(@dbfield)Date x = Minimum(@formula)Time x = Minimum(@dbfield, "group_field")DateTime x = Minimum(@dbfield, @"group_field")String x = Minimum(@dbfield, @parameter)Currency x = Minimum(@dbfield)Boolean x = Minimum(@formula)Date x = Minimum(@formula, "group_field")Currency x = Minimum(@formula, @"group_field")Currency x = Minimum(@formula, @parameter)String x = Minimum(['1', '2', '3.0', '4.5', '45', '67'])Date x = Minimum([toDate(1998, 1, 1), toDate(1997, 7, 1), toDate(1999, 1, 16)]Note: If a field_variable is assigned to a variable, for example X, the variable X will lose the characteristic of representing a group of values. The following formula will then be treated as incorrect.
Number x = @dbfield;
Number y = Minimum(x); // system will prompt you that there is no such kind of function.