Specifies the type of subtotal (aggregate) statistic to calculate.
Namespace:
C1.OlapAssembly: C1.Silverlight.Olap.5 (in C1.Silverlight.Olap.5.dll)
Syntax
| C# |
|---|
public enum Subtotal |
| Visual Basic |
|---|
Public Enumeration Subtotal |
Members
| Member name | Value | Description | |
|---|---|---|---|
| Sum | 0 | Gets the sum of a group. | |
| Count | 1 | Gets the number of values in a group. | |
| Average | 2 | Gets the average of a group. | |
| Max | 3 | Gets the maximum value in a group. | |
| Min | 4 | Gets the minimum value in a group. | |
| First | 5 | Gets the first value in a group. | |
| Last | 6 | Gets the last value in a group. | |
| Var | 7 | Gets the sample variance of a group. | |
| Std | 8 | Gets the sample standard deviation of a group. | |
| VarP | 9 | Gets the population variance of a group. | |
| StdP | 10 | Gets the population standard deviation of a group. |