Enum AggregationFunction
Specifies typesof aggregation functions.
Namespace: DRIT.Spreadsheet.Pivot
Assembly: DRIT.Spreadsheet.dll
Syntax
public enum AggregationFunction : int
  Fields
| Name | Description | 
|---|---|
| Average | The average of the values.  | 
      
| Count | The count of data values. COUNT.  | 
      
| CountNumbers | The count of data values that are numbers. CountA.  | 
      
| Default | |
| Maximum | The largest value. MAX.  | 
      
| Minimum | The smallest value.  | 
      
| Product | The product of the values.  | 
      
| StandardDeviation | An estimate of the standard deviation of a population, where the data to be summarized is a subset of the entire population  | 
      
| StandardDeviationPopulation | The standard deviation of a population, where the population is all of the data to be summarized.  | 
      
| Sum | The sum of the values.  | 
      
| Variance | An estimate of the variance of a population, where the data to be summarized is a subset of the entire population. VAR.  | 
      
| VariancePopulation | The variance of a population, where the population is all of the data to be summarized. VARP.  |