ActiveReports3 Request technical support
SummaryFunc Enumeration
See Also  


Determines the summary calculation function performed on the  field value.

Syntax

Visual Basic (Declaration) 
Public Enum SummaryFunc 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As SummaryFunc
C# 
public enum SummaryFunc : Enum 

Members

MemberDescription
SumCalculates the total of all values within the specified summary region (group, page or report).
AvgCalculates the average of all values within the specified summary region (group, page or report).
CountCalculates the count of all values within the specified summary region (group, page or report).
MinCalculates the minimum of all values within the specified summary region (group, page or report).
MaxCalculates the maximum of all values within the specified summary region (group, page or report).
VarCalculates the variance of all values within the specified summary region (group, page or report).
VarPCalculates the population variance of all values within the specified summary region (group, page or report).
StdDevCalculates the standard deviation of all values within the specified summary region (group, page or report).
StdDevPCalculates the population standard deviation of all values within the specified summary region (group, page or report).
DSumCalculates the total based on the distinct values of another field within the specified summary region (group, page or report).
DAvgCalculates the average based on the distinct values of another field within the specified summary region (group, page or report).
DCountCalculates the distinct count based on the distinct values of another field within the specified summary region (group, page or report).
DVarCalculates the variance based on the distinct values of another field within the specified summary region (group, page or report).
DVarPCalculates the population distinct variance based on the distinct values of another field within the specified summary region (group, page or report).
DStdDevCalculates the standard deviation based on the distinct values of another field within the specified summary region (group, page or report).
DStdDevPCalculates the population standard deviation based on the distinct values of another field within the specified summary region (group, page or report).

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         DataDynamics.ActiveReports.SummaryFunc

See Also