property Aggregate.FormatValue as String
Specifies the expression to be applied on the value before passing to the aggregate function.

TypeDescription
String A String expression that defines the formula to be applied on the input value, so it can be passed to the aggregate function. If missing, the value itself is passed to the Aggregate function.
By default, the FormatValue is empty. The FormatValue property allows you to define an expression that will be applied to each individual value before it is passed into the aggregate function for processing. This property is particularly useful when you need to manipulate or transform the values in a certain way before they are aggregated. On the other hand, the Base property defines the core aggregate function, with "sum" being the most commonly used function in typical scenarios, as explained below.

If your goal is to adjust or convert the values before they are aggregated, the FormatValue property is the appropriate choice. However, if you need to perform any changes, formatting, or adjustments after the aggregation has been completed (such as modifying the final result), you should use the FormatResult property. This allows for more flexibility in how the data is presented or manipulated at different stages of the aggregation process.

If the FormatValue expression is not empty and is invalid, the aggregate function may appear disabled in the control's context menu. This happens because the control detects an error or issue with the expression, preventing the proper application of the aggregate function. To resolve this, ensure that the FormatValue expression is correctly defined and valid, allowing the aggregate function to work as expected.

For instance:

The expression of the FormatValue property supports the following keywords:

This property/method supports predefined constants and operators/functions as described here.