Version

AggregatorType Enumeration

An enumeration of different function that can be applied to measures.
Syntax
'Declaration
 
Public Enum AggregatorType 
   Inherits System.Enum
public enum AggregatorType : System.Enum 
Members
MemberDescription
AverageThe aggregated function will returns the average of cells value.
AverageOfChildrenThe aggregated function will returns the average of the measure's children.
ByAccountAggregated by the aggregation function associated with the specified account type of an attribute in an account dimension.
CalculatedThe aggregated function will returns the result derived from a formula.
CountThe aggregated function will count the number of the values.
DistinctCountThe aggregated function will returns the number of distinct, nonempty tuples in a set.
FirstNonEmptyThe aggregated function will returns the measure's first nonempty member.
LastNonEmptyThe aggregated function will returns the measure's last nonempty member.
MaxThe aggregated function will returns the largest value.
MinThe aggregated function will returns the smallest value.
NoneNo aggregation performed.
StdThe aggregated function will estimates the standart deviation based on sample.
SumThe aggregated function adds all values.
UnknownThe aggregated function is undefined.
VarThe aggregated function will estimates variance based on the sample.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also