Skip to content

CUMMULATIVE

The CUMMULATIVE function in Infoveave is used to calculate the cumulative total of a numerical column in a dataset. It computes the running total of the values in the column, where each row’s total includes the current row’s value plus the total from all previous rows.

Applicable to

  • Calculated Columns
  • Expressions

Return Value

The return value of the CUMMULATIVE function is a numerical column containing the cumulative totals for each row in the dataset.

Remark

  • The CUMMULATIVE function is useful for analyzing trends and patterns in data over time.
  • It allows you to see how a particular value accumulates or grows over a series of observation.
  • CUMMULATIVE function is applicable only for numeric values.
  • It does not take nulls and blanks into account.

Syntax

CUMMULATIVE(<expression>)

CUMMULATIVE in Board Expression

ExpressionA placeholder in a function that is replaced with the actual widget and measure names.
Widget NameThe specific name or identifier of the widget being used for data visualization in the specific Infoboard.
MeasureRepresents the name of the measure that is being displayed or analyzed using the widget.

Steps to Use CUMMULATIVE

  1. Write the CUMMULATIVE function. For instance CUMMULATIVE(<expression>)
  2. Replace <expression> with 'Widget Name'[Measure].Replace Widget Name with the actual name of your widget and Measure with the corresponding measure name.
  3. To learn how to configure an Expression in Infoveave, visit the section Configure Expression.

CUMMULATIVE in Calculated Columns

ExpressionA placeholder in a function that is replaced with the column names.
Column NameThe name of the column in the dataset or Datasource that contains the values you want to analyze.
  • Write the CUMMULATIVE function. For instance
CUMMULATIVE(<expression>)
  1. Replace <expression> with [Column Name].Replace Column Name with the actual name of your column required.
  2. To learn how to add calculated columns in Infoveave, visit the section Calculated Columns.