Action
PercentOfMinimum (fld, condFld) has the same effect as: 100 * Minimum (fld, condFld) / Minimum (fld). It expresses the minimum of the values of the field fld for the group determined by condFld as a percentage of the minimum of all the values of fld.
PercentOfMinimum (fld, condFld, cond) has the same effect as: 100 * Minimum (fld, condFld, cond) / Minimum (fld). The String argument cond expresses some additional information to precisely specify the grouping. For example, if condFld is a Date field, is the grouping "daily" or "weekly" or "monthly" and so on.
PercentOfMinimum (fld, innerCondFld, outerCondFld) has the same effect as: 100 * Minimum (fld, innerCondFld) / Minimum (fld, outerCondFld). It expresses the minimum of the values of the field fld for the group determined by innerCondFld as a percentage of the minimum for the group determined by outerCondFld.
PercentOfMinimum (fld, innerCondFld, innerCond, outerCondFld) has the same effect as: 100 * Minimum (fld, innerCondFld, innerCond) / Minimum (fld, outerCondFld).
PercentOfMinimum (fld, innerCondFld, outerCondFld, outerCond) has the same effect as: 100 * Minimum (fld, innerCondFld) / Minimum (fld, outerCondFld, outerCond).
PercentOfMinimum (fld, innerCondFld, innerCond, outerCondFld, outerCond) has the same effect as: 100 * Minimum (fld, innerCondFld, innerCond) / Minimum (fld, outerCondFld, outerCond).