AggregateFunction Enumeration
Updated: May 24, 2016
Specifies the aggregate function to be used by reporting tools to summarize column values.
Assembly: Microsoft.AnalysisServices.Tabular (in Microsoft.AnalysisServices.Tabular.dll)
| Member name | Description | |
|---|---|---|
| Average | Calculates the average of values for all non-empty child members. | |
| Count | Returns the rows count in the table. | |
| Default | The default aggregation is Sum for numeric columns. Otherwise the default is None. | |
| DistinctCount | Returns the count of all unique child members. | |
| Max | Returns the highest value for all child members. | |
| Min | Returns the lowest value for all child members. | |
| None | Leaves the aggregate function unspecified. | |
| Sum | Calculates the sum of values contained in the column. This is the default aggregation function. |