Table of Contents

Enum AggregateFunction

Namespace
TabularEditor.TOMWrapper
Assembly
TOMWrapper.dll

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

public enum AggregateFunction

Fields

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.