DefaultAggregateFunction Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the aggregate function to be used by reporting tools to summarize attribute (calculated column) values.
public enum DefaultAggregateFunction
type DefaultAggregateFunction =
Public Enum DefaultAggregateFunction
- Inheritance
-
DefaultAggregateFunction
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Automatically select the appropriate aggregate function based on the data type. |
None | 1 | Do not use aggregate functions. |
Sum | 2 | Use the aggregate function, SUM. |
Min | 3 | Use the aggregate function, MIN. |
Max | 4 | Use the aggregate function, MAX. |
Count | 5 | Use the aggregate function, COUNT. |
Average | 6 | Use the aggregate function, AVERAGE. |
DistinctCount | 7 | Use the aggregate function, DISTINCT COUNT. |
Remarks
Use "Default" to get the appropriate aggregation based on the data type. Use "None" to indicate to reporting tools not to aggregate values.