Defines the set of supported aggregate functions (see Aggregate).

Namespace:  C1.C1Preview.DataBinding
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public enum AggregateFuncEnum
Visual Basic
Public Enumeration AggregateFuncEnum

Members

Member nameDescription
Sum Returns the sum of values of the expression within the scope.
Average Returns the average of values of the expression within the scope.
Count Returns the count of values of the expression within the scope.
Min Returns the minimum of values of the expression within the scope.
Max Returns the maximum of values of the expression within the scope.
CountDistinct Returns the count of distinct values of the expression within the scope.
First Returns the first (in the sorted sequence) value of the expression within the scope.
Last Returns the last (in the sorted sequence) value of the expression within the scope.
Var Returns the variance of values of the expression within the scope.
VarP Returns the population variance of values of the expression within the scope.
StDev Returns the standard deviation of values of the expression within the scope.
StDevP Returns the population standard deviation of values of the expression within the scope.

See Also