Forum Discussion
julsr
Continued Contributor
1 year agoDatesMTD error when using all the data in my database
Hello everyone! I'm using the datesMTD calculation to get Month To Date values. First, I used it with one year of data, and it worked. Now, I've tried using it for 13 years of information, and I'm ge...
- 1 year ago
julsr Try using below DAX
DAX
TotalMTDValue =
CALCULATE(
SUM(database[amount]),
DATESMTD(DatesTable[Date])
)
bhanu_gautam
Super User
1 year agojulsr Try using below DAX
DAX
TotalMTDValue =
CALCULATE(
SUM(database[amount]),
DATESMTD(DatesTable[Date])
)