Forum Discussion
line graph
hi
i was trying to compare last year nd current year calls
but im not getting the correct month count
i was using the below dax
Anonymous , At least one measure seems correct. Make sure the Calendar table is marked as the Date table.
In case you do not need YTD only month data
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-12,MONTH)))
2 Replies
- amitchandakSuper User
Anonymous , At least one measure seems correct. Make sure the Calendar table is marked as the Date table.
In case you do not need YTD only month data
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-12,MONTH)))
- AnonymousNot applicable
Hi Anonymous ,
Please try this:
YTD = CALCULATE ( COUNT ( 'Table'[Escalated to Lidl IT] ), DATESYTD ( 'Table'[Date] ) )Last YTD = VAR DataMaxDate = CALCULATE ( MAX ( 'Table'[Date] ), ALL ('Table' ) ) RETURN CALCULATE ( [YTD], SAMEPERIODLASTYEAR ( INTERSECT ( VALUES ( 'Table'[Date] ), DATESBETWEEN ( 'Table'[Date], BLANK (), DataMaxDate ) ) ) )Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.