1 out of 5 rated this helpful - Rate this topic

RunningValue Function (ReportViewer) 

Returns a running aggregate of the specified expression.


RunningValue(Expression, Function, Scope)

Parameters

Expression

(Data type is determined by the aggregate function specified in Function.) The expression on which to perform the aggregation. The expression cannot contain aggregate functions.

Function

(Enum) The name of the aggregate function to apply to the expression. This function cannot be RunningValue, RowNumber, or Aggregate.

Scope

(String) The name of a data table, object, grouping, or data region that contains the report items to which to apply the aggregate function. If a data table or object is specified, the running value is not reset throughout the entire dataset. If a grouping is specified, the running value is reset when the group expression changes. If a data region is specified, the running value is reset for each new instance of the data region. For more information about the Scope parameter, see Built-in Functions for ReportViewer Reports.

Determined by the aggregate function that is specified in the Function parameter.

Restrictions for RunningValue are also determined by the aggregate function specified in the Function parameter. For more information, see the topic for the aggregate function that you are interested in using.

The following code example provides a running sum of the cost field in the outermost data region.

RunningValue(Fields!Cost.Value, Sum, Nothing)
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.