Returns the average of a specified field or expression across a collection.
Syntax 1
|
Returns the average of a specified field or expression across a collection. |
|
Average(collection, field) |
|
Arguments: |
|
|
collection |
Collection - A collection. |
|
|
field |
Field - The field to average. |
Syntax 2
|
Returns the average of a specified field or expression across a collection. |
|
Average(collection, expression) |
|
Arguments: |
|
|
collection |
Collection - A collection. |
|
|
expression |
Numeric - An expression that resolves to a number. |
Syntax 3
|
Returns the average of a specified field or expression across a collection. |
|
Average(collection, field, filter) |
|
Arguments: |
|
|
collection |
Collection - A collection. |
|
|
field |
Field - The field to average. |
|
|
filter |
FilterExpression - Filter criteria. |
Syntax 4
|
Returns the average of a specified field or expression across a collection. |
|
Average(collection, expression, filter) |
|
Arguments: |
|
|
collection |
Collection - A collection. |
|
|
expression |
Numeric - An expression that resolves to a number. |
|
|
filter |
FilterExpression - Filter criteria. |
Remarks
- Arguments after the collection argument are evaluated in the context of a collection member.
- Example: Average(Vehicles, BI_PD.Premium, Year=1999) returns 4096.75.
Comments
0 comments
Please sign in to leave a comment.