AggregateFunction Enum

Definition

Specifies the aggregate function to be used by reporting tools to summarize column values.

public enum AggregateFunction
type AggregateFunction = 
Public Enum AggregateFunction
Inheritance
AggregateFunction

Fields

Average 7

Calculates the average of values for all non-empty child members.

Count 6

Returns the rows count in the table.

Default 1

The default aggregation is Sum for numeric columns. Otherwise the default is None.

DistinctCount 8

Returns the count of all unique child members.

Max 5

Returns the highest value for all child members.

Min 4

Returns the lowest value for all child members.

None 2

Leaves the aggregate function unspecified.

Sum 3

Calculates the sum of values contained in the column. This is the default aggregation function.

Applies to