[]
Specifies the type of aggregate that is computed for a grouped row.
public enum AggregateEnum
| Name | Description |
|---|---|
| Average | Average of the numerical values. |
| Count | Count of non-empty values. |
| Custom | Causes the GroupAggregate event to be raised. |
| Max | Maximum value (numerical, string, or date). |
| Min | Minimum value (numerical, string, or date). |
| None | No aggregate is calculated or displayed. |
| Std | Standard deviation (using formula for Sample, n-1). |
| StdPop | Standard deviation (using formula for Population, n). |
| Sum | Sum of numerical values. |
| Var | Variance (using formula for Sample, n-1). |
| VarPop | Variance (using formula for Population, n). |