Forum Discussion
bendejnp
Helper I
4 years agoUsing active and inactive in one measure
Hello, Below is a simplified example of the dataset showing the orders with an order date and a date for requisted delivery. Example data: order date and requested delivery date ar...
- 4 years ago
OK, try
Turnover MTD = var mtd = DATESMTD( 'Calendar'[Date]) return CALCULATE( SUM('Table'[Turnover]), REMOVEFILTERS('Calendar'), TREATAS( mtd, 'Table'[Order date]), TREATAS( mtd, 'Table'[Delivery date]) )You may need to alter the REMOVEFILTERS if the order day & month aren't coming from the Calendar table.
johnt75
Super User
4 years agoREMOVEFILTERS is to make sure that nothing is being filtered out by any slicers or filters applied to the calendar table.
bendejnp
Helper I
4 years agoOk I see. So since the latest day is selected in the dashboard, it will only sum up the selected day. Thanks for the explanation.