ArraySum()

Adds up all the values in the array and returns the sum

Usage

NUMERIC = ArraySum( array )
Argument Summary
array Array object

Calling

Supports named-parameter calling allowing you to use the function like:

ArraySum(
   array=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArraySum( ArgumentCollection={
   array : ?
} );