Forum Discussion
MTD / LY MTD
Thank you for reading.
I have two measures:
MTD = TOTALMTD(SUM('4011-Visits'[GrossProd]),'Date'[Date])
To parry2k point, if you don't want the 'Is Past' column you can get the last transaction date from your detail table and use it in a VAR like so.
MTD LY = VAR _LastDate = MAX ( '4011-Visits'[DateField] ) RETURN CALCULATE( [MTD], CALCULATETABLE ( SAMEPERIODLASTYEAR ( DATE[Date] ), DATE[Date] <= _LastDate ) )
12 Replies
- jdbuchanan71
Super User
Add a column to your 'Date' table named 'Is Past'
=DATE[Date] <= TODAY()Then you can change your PY MTD
MTD LY = CALCULATE( [MTD], CALCULATETABLE ( SAMEPERIODLASTYEAR ( DATE[Date] ), DATE[Is Past] = TRUE ) )This will stop the LY calc from going past the current date but in the prior year. Pattern courtesy of SQLBI https://www.sqlbi.com/articles/hiding-future-dates-for-calculations-in-dax/
- parry2k
Super User
jdbuchanan71 great idea but I would avoid adding un-necessary column but rather get the last transaction date and filter on that, what happens if you are not looking at the current year, you are coming 2019 vs 2018, this logic will not work.
Although it is a cool solution.
- jdbuchanan71
Super User
If you are looking at 2019 vs 2018 your not going to have a month with partial current results but full py reusults though. You can change the check for 'Is Past' to look at say MAX(Sales[Invoice Date]) instead if you don't want to use TODAY().
- v-alq-msft
Community Support
Hi, JellyFishBi
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
4011-Visits:
You may create measures as below.
MTD = var _maxdate = MAX('4011-Visits'[Date]) var _year = YEAR(_maxdate) var _month = MONTH(_maxdate) var _day = DAY(_maxdate) return CALCULATE( SUM('4011-Visits'[GrossProd]), FILTER( ALLSELECTED('4011-Visits'), '4011-Visits'[Date]>=DATE(_year,_month,1)&& '4011-Visits'[Date]<=DATE(_year,_month,_day) ) ) MTD LY = var _maxdate = MAX('4011-Visits'[Date]) var _year = YEAR(_maxdate) var _month = MONTH(_maxdate) var _day = DAY(_maxdate) return CALCULATE( SUM('4011-Visits'[GrossProd]), FILTER( ALLSELECTED('4011-Visits'), '4011-Visits'[Date]>=DATE(_year-1,_month,1)&& '4011-Visits'[Date]<=DATE(_year-1,_month,_day) ) )Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- JellyFishBi
Helper I
Thank you Allan. Looks like your well thought out solution saved the day.
Might you be abel to do the same thing for week to date last year(WTD LY)? Currently I have WTD as:
WTD =
VAR CurrentDate =
LASTDATE ( 'Date'[Date] )
VAR DayNumberOfWeek =
WEEKDAY ( LASTDATE ( 'Date'[Date] ), 3 )
RETURN
CALCULATE (
SUM ( '4011-Visits'[GrossProd] ),
DATESBETWEEN (
'Date'[Date],
DATEADD ( CurrentDate, -1 * DayNumberOfWeek, DAY ),
CurrentDate
)
)- parry2k
Super User
JellyFishBi did you tried the solution jdbuchanan71 posted. You never posted any feedback on that solution. I think you should test and tell if it worked or not.
- parry2k
Super User
- Ashish_Mathur
Super User
Hi,
Do these measures work?
MTD = SUM('4011-Visits'[GrossProd])
MTD LY = CALCULATE([MTD],SAMEPERIODLASTYEAR('Date'[Date]))
Hope this helps.
- JellyFishBi
Helper I
So Very Odd. I have used these measures in the past, and have worked fine in the past. I run at least 10 different dimilar models with the logic you have specified and two days ago, the logic had failed. It led me to wondering the integrity of the date table. All seemed to fall into place when I set the ending date table value to Today(). Ashish_Mathur In your travels have you experienced ever your measures all of a sudden failing?
Mike
- Ashish_Mathur
Super User
Hi,
Has your question been solved?