NEXT

Applies to: Calculated column Calculated table Measure Visual calculation

Used in visual calculations only. Retrieves a value in the next row of an axis in the visual matrix.

Syntax

NEXT ( <expression>[, <steps>][, <axis>][, <blanks>][, reset] )

Parameters

Term Definition
expression The expression to be evaluated.
steps (Optional) Indicates the number of rows to go forward to fetch the value. If omitted, 1 is used (the exactly next row).
axis (Optional) An axis reference. If omitted, the first axis of the Visual Shape definition is used.
blanks (Optional) An enumeration that defines how to handle blank values when sorting.
The supported values are:
  • DEFAULT (the default value), where the behavior for numerical values is blank values are ordered between zero and negative values. The behavior for strings is blank values are ordered before all strings, including empty strings.
  • FIRST, blanks are always ordered on the beginning, regardless of ascending or descending sorting order.
  • LAST, blanks are always ordered on the end, regardless of ascending or descending sorting order.
reset (Optional) Specifies how the calculation restarts. Valid values are: None, LowestParent, HighestParent, or an integer. None is the default value.

Return value

The value of <expression> evaluated from the next row of the axis.

Remarks

This function can only be used in a visual calculation.

Example

The following visual calculation returns the sales amount of the next row on ROWS axis, that resets on the lowest parent.

NextInternetSalesAmount = NEXT ( [Sum of SalesAmount], ROWS, LowestParent )

The screenshot below shows the visual matrix and the visual calculation expression:

DAX visual calculation

FIRST
LAST
PREVIOUS