Hi reimero,
There are multiple ways of handling this.
If you still have your original measure [% Closed MTD], then just write:
Code:
% Closed MTD Unfiltered =
CALCULATE ( [% Closed MTD], Incidents )
otherwise:
Code:
% Closed MTD Unfiltered =
CALCULATE ( TOTALMTD ( [% Tickets Closed], 'Calendar'[Date] ), Incidents )
Including Incidents as a filter argument actually includes the extended Incidents table, which includes related rows of Calendar. This effectively limits the context to dates present in Incidents, and the latest date will determine the date at which 'MTD' is defined.
Note, any of these measures are still subject to filters on Calendar or other columns, i.e. the "last date" is the last date in Incidents in the current filter context.
Cheers,
Owen
Bookmarks