CLOSINGBALANCEMONTH DAX Function (Time Intelligence) Context Transition
Evaluates the specified expression for the date corresponding to the end of the current month after applying specified filters.
Syntax
Parameter | Attributes | Description |
---|---|---|
Expression |
The expression to be evaluated. |
|
Dates |
The name of a column containing dates or a one column table containing dates. |
|
Filter | Optional |
A boolean (True/False) expression or a table expression that defines a filter. |
Return values
A scalar value that represents the expression evaluated at the last date of the month in the current context.
Remarks
The dates argument can be any of the following:
- A reference to a date/time column. Only in this case a context transition applies because the column reference is replaced by
- CALCULATETABLE ( DISTINCT ( <Dates> ) )
- A table expression that returns a single column of date/time values.
- A Boolean expression that defines a single-column table of date/time values.
The result table includes only a date that exists in the dates column.
The syntax:
CLOSINGBALANCEMONTH ( <Expression>, <Dates> [, <Filter>] )
corresponds to:
CALCULATE ( <Expression>, ENDOFMONTH ( <Dates> ) [, <Filter>] )
Related articles
Learn more about CLOSINGBALANCEMONTH in the following articles:
-
Semi-Additive Measures in DAX
Values such as inventory and balance account, usually calculated from a snapshot table, require the use of semi-additive measures. In Multidimensional you have specific aggregation types, like LastChild and LastNonEmpty. In PowerPivot and Tabular you use DAX, which is flexible enough to implement any calculation, as described in this article. » Read more
Related functions
Other related functions are:
Last update: Feb 6, 2019 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo
MSDN documentation: https://msdn.microsoft.com/en-us/query-bi/dax/closingbalancemonth-function-dax