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