Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community,
What is the rule or the function of AVG agregation?
Thanks
When you use expression charts, you can calculat a total of sum rows!!!
Returns a set of values of expression calculated over dimensions. The result can be compared to the expression column of a 'local chart', evaluated in the context where the aggr function resides. Each dimension must be a single field. It cannot be an expression (calculated dimension).
If the expression argument is preceded by the nodistinct qualifier, each combination of dimension values may generate more than one return value, depending on underlying data structure. If the expression argument is preceded by the distinct qualifier or if no qualifier is used at all, each combination of dimension values will generate only one return value.
By default, the aggregation function will aggregate over the set of possible records defined by the selection. An alternative set of records can be defined by a set expression.
By using this function in calculated dimensions it is possible to achieve nested chart aggregation in multiple levels. See also Nested aggregation and related issues.
When used in chart expressions it is possible to achieve sum-of-rows totals in a pivot table.
aggr( sum(Sales), Country )
aggr( nodistinct sum(Sales), Country )
aggr( sum(Sales), Country, Region )
count( aggr( sum(Sales), Country ))