Enum SsasAggregationFunction
Namespace: Varigence.Languages.Biml.Cube
Assembly: Biml.dll
C#
public enum SsasAggregationFunction
Fields
| Fields | Description |
|---|---|
| AverageOfChildren | Specifies that the average of all non-empty leaf descendants in time should be used. |
| ByAccount | Specifies that each CurrentMember of the Account dimension will have an aggregation chosen based on its account type. The default is Sum. |
| Count | Specifies that the count of column values should be used. |
| DistinctCount | Specifies that a count of the distinct column values should be used. |
| FirstChild | Specifies that the first child member on the time dimension should be used. |
| FirstNonempty | Specifies that the first non-empty child on the time dimension should be used. |
| LastChild | Specifies that the last child member on the time dimension should be used. |
| LastNonempty | Specifies that the last non-empty on the time dimension should be used. |
| Max | Specifies that the maximum of the column values should be used. |
| Min | Specifies that the minimum of the column values should be used. |
| None | Specifies that no aggregation should be used. |
| Sum | Specifies that the sum of column values should be used. |