Type | Description | |||
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:
If a custom aggregate function is needed, the expression will define it. This expression supports the following keywords:
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. |
Return | Description | |||
Aggregate | An Aggregate object being created, that holds the newly object. |
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