Action
PercentOfMaximum (fld, condFld) has the same effect as: 100 * Maximum (fld, condFld) / Maximum (fld). It expresses the maximum of the values of the field fld for the group determined by condFld as a percentage of the maximum of all the values of fld.
PercentOfMaximum (fld, condFld, cond) has the same effect as: 100 * Maximum (fld, condFld, cond) / Maximum (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.
PercentOfMaximum (fld, innerCondFld, outerCondFld) has the same effect as: 100 * Maximum (fld, innerCondFld) / Maximum (fld, outerCondFld). It expresses the maximum of the values of the field fld for the group determined by innerCondFld as a percentage of the maximum for the group determined by outerCondFld.
PercentOfMaximum (fld, innerCondFld, innerCond, outerCondFld) has the same effect as: 100 * Maximum (fld, innerCondFld, innerCond) / Maximum (fld, outerCondFld)
PercentOfMaximum (fld, innerCondFld, outerCondFld, outerCond) has the same effect as: 100 * Maximum (fld, innerCondFld) / Maximum (fld, outerCondFld, outerCond).
PercentOfMaximum (fld, innerCondFld, innerCond, outerCondFld, outerCond) has the same effect as: 100 * Maximum (fld, innerCondFld, innerCond) / Maximum (fld, outerCondFld, outerCond).