TOTALMTD DAX Function (Time Intelligence) Context Transition
Evaluates the specified expression over the interval which begins on the first of the month and ends with the last date in the specified date column 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 for the Dates in the current month-to-date, given the dates in Dates.
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 syntax:
TOTALMTD ( <Expression>, <Dates> [, <Filter>] )
corresponds to:
CALCULATE ( <Expression>, DATESMTD ( <Dates> ) [, <Filter>] )
Related functions
Other related functions are:
Last update: Dec 5, 2019 » Contribute » Show contributors
Contributors: Alberto Ferrari, Marco Russo
MSDN documentation: https://docs.microsoft.com/en-us/dax/totalmtd-function-dax