DefaultAggregateFunction Enum

Definition

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

Average 6

Use the aggregate function, AVERAGE.

Count 5

Use the aggregate function, COUNT.

Default 0

Automatically select the appropriate aggregate function based on the data type.

DistinctCount 7

Use the aggregate function, DISTINCT COUNT.

Max 4

Use the aggregate function, MAX.

Min 3

Use the aggregate function, MIN.

None 1

Do not use aggregate functions.

Sum 2

Use the aggregate function, SUM.

Remarks

Use "Default" to get the appropriate aggregation based on the data type. Use "None" to indicate to reporting tools not to aggregate values.

Applies to