Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.49 KB

lastnonblank-function-dax.md

File metadata and controls

44 lines (29 loc) · 1.49 KB
description title
Learn more about: LASTNONBLANK
LASTNONBLANK function (DAX) | Microsoft Docs

LASTNONBLANK

[!INCLUDEapplies-to-measures-columns-tables-visual-calculations-discouraged]

Returns the last value in the column, column, filtered by the current context, where the expression is not blank.

Syntax

LASTNONBLANK(<column>,<expression>)  

Parameters

Term Definition
column A column expression.
expression An expression evaluated for blanks for each value of column.

Return value

A table containing a single column and single row with the computed last value.

Remarks

  • The column argument can be any of the following:

    • A reference to any column.
    • A table with a single column.
    • A Boolean expression that defines a single-column table
  • Constraints on Boolean expressions are described in the topic, CALCULATE function.

  • This function is typically used to return the last value of a column for which the expression is not blank. For example, you could get the last value for which there were sales of a product.

  • [!INCLUDE function-not-supported-in-directquery-mode]

Related content

FIRSTNONBLANK function
Statistical functions