method Aggregates.Add (Key as String, Base as Variant, [Name as Variant], [Caption as Variant])
Adds an Aggregate function and returns a reference to the newly created object.

TypeDescription
Key as String A String expression that specifies the unique key to identify the Aggregate object. The Key parameter should include only alpha-numeric characters. Any other characters are not included. The Key property specifies the Aggregate's key. An error is thrown if an attempt is made to add an aggregate with the same key that already exists in the collection. 
Base as Variant The string expression defines either a base predefined aggregate function or an expression for a custom aggregate function. 

The predefined aggregate functions are:

  • sum, adds all the values in the set to return the total
  • min, returns the smallest value in the set
  • max, returns the largest value in the set
  • count, counts how many values are in the set
  • avg, calculates the arithmetic mean by dividing the sum by the number of values
  • unique, counts how many distinct values are in the set

If a custom aggregate function is needed, the expression will define it. This expression supports the following keywords:

  • value, to represent the current value being evaluated,
  • pvalue, for the previously computed result of the expression,
  • vcount, for the count of processed elements

This expression supports predefined constants and operators/functions as described here. The result of the evaluated expression is stored in the next pvalue, which starts as empty. For example, to add the numbers 1, 2, and 3, consider this process: Initially, pvalue is empty, value is 1, and vcount is 1. The expression "pvalue + value" evaluates to 0 + 1 = 1, so pvalue becomes 1. On the next call, pvalue is 1, value is 2, and vcount is 2. The expression evaluates to 1 + 2 = 3, so pvalue becomes 3. Finally, when pvalue is 3, value is 3, and vcount is 3, the expression evaluates to 3 + 3 = 6.

Any invalid expression will cause the Aggregate object to appear as disabled in the control's context menu.

Name as Variant A String expression that indicates the HTML caption to be shown on the control's context menu
Caption as Variant A String expression that indicates the HTML caption to be shown on the column's header.
ReturnDescription
AggregateAn Aggregate object being created, that holds the newly object.
The Add method adds an Aggregate object to the Aggregates collection. An aggregate function processes the values of multiple rows, grouping them based on specific criteria to generate a single value that provides more meaningful insight or measurement, such as a set, bag, or list. Each Aggregate object is identified by a unique key.

By default, the Aggregates collection includes the following predefined aggregate functions:

To customize the value or result of an aggregate function, use the FormatValue or FormatResult properties. For displaying aggregate functions on the columns, use the PivotColumns or PivotTotals properties. 

The Aggregate objects are shown on the control's context menu as shown bellow:

 

For instance, here are a few equivalent expressions for predefined functions like:

or