AggregationMode Enumeration | 
 
            The available aggregation modes used for data aggregation
            
 
    Namespace: 
   Easymap.AddIn.Analyse
    Assembly:
   EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.0.0.0
Syntaxpublic enum AggregationMode
Public Enumeration AggregationMode
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Sum | 0 | 
            Returns the sum of all the values
             | 
 | Average | 1 | 
            Returns the average of the values
             | 
 | Minimum | 2 | 
            Returns the minimum value
             | 
 | Maximum | 3 | 
            Returns the maximum value
             | 
 | First | 4 | 
            Returns the first value
             | 
 | Last | 5 | 
            Returns the last value
             | 
 | Median | 6 | 
            Returns the median value
             | 
 | Mode | 7 | 
            Returns the most often exists value
             | 
 | KommaSeparatedList | 8 |  | 
 | CountRecords | 32 | 
            Returns a count of all values
             | 
 | CountValues | 33 | 
            Returns a count of all multiple values
             | 
 | CountDistinct | 34 | 
            Returns a count of all distinct values
             | 
See Also