Version

MeasureAggregation Enumeration

Constants which describe the manner in which a Measure is aggregated.
Syntax
'Declaration
 
Public Enum MeasureAggregation 
   Inherits System.Enum
public enum MeasureAggregation : System.Enum 
Members
MemberDescription
AverageThe aggregation consists of the sum of the value of each cell divided by the number of cells with a non-null value.
CountThe aggregation consists of the total number of cells with non-null values.
MaxThe aggregation consists of the largest cell value.
MinThe aggregation consists of the smallest cell value.
NoneNo aggregation occurs. The AggregateMeasure occurs, providing the opportunity to execute a customized aggregation function.
SumThe aggregation consists of the sum of the value of each cell.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, 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