Aggregate (Built-in Functions)
Expression Syntax: Avg({property})
property
A property, eg Population.
Example:
Avg({Population@})
Gets the average of all the values of Population.
Expression Syntax: Max(number1,number2)
number1: The first number or property.
number2: The second number or property.
Example:
Max(10,20) or Max(Population@)
Obtains the largest value of the numbers (10,20) or the largest value of Population.
Expression Syntax: Min(number1,number2)
number1: The first number or property.
number2: The second number or property.
Example:
Min(10,20) or Min(Population@)
Gets the smallest value of the numbers (10,20) or the smallest value of Population.
Expression Syntax: Sum({property})
property
The property to be summed
Example:
Sum({Population@})
Gets the sum of all the values of Population.