type property

GroupComputationType type
getter/setter pair

Defines the type of the computation

  • count: Counts the number of objects in each group

  • countif: Counts the number of objects in each group based on the result of the specified expression. If the expression evaluates to true then they are counted otherwise not.

  • sum: Sums the evaluated expression values for each group member. The expression needs to return an integer or decimal value.

  • avg: Averages the evaluated expression values for the overall group. The expression needs to return an integer or decimal value.

  • min: Calculates the minimum value of the evaluated expression for the overall group. The expression needs to return an integer or decimal value.

  • max: Calculates the maximum value of the evaluated expression for the overall group. The expression needs to return an integer or decimal value.

Implementation

GroupComputationType type;