Forum Discussion
Anonymous
3 years agoNot applicable
SamePeriodLastYear YTD -1 year Issue! help!
Hi guys, I can't seem to wrap my head around this issue of getting last year YTD sales volume. Currently i have the sales volume from January 2023 to August 2023, and would like to compare it ...
- 3 years ago
Hi Anonymous
1. Create a date table using the function CalendarAuto()
2. Create a measure with the following DAX code
YTD SamePeriodLastYear =
VAR YTD_Value =
CALCULATE ( SUM ( [SalesVolume] ); DATESYTD ( 'Calendar'[Date].[Date] ) )
VAR MaxDate =
CALCULATE ( MAX ( 'DateTable'[Date] ); ALL ( 'DateTable'[Date] ) )
RETURN
CALCULATE (
[YTD_Value];
SAMEPERIODLASTYEAR (
INTERSECT (
VALUES ( 'DateTable'[Date].[Date] );
DATESBETWEEN ( 'DateTable'[Date].[Date]; BLANK (); MaxDate )
)
)
)
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
DataVitalizer
Super User
3 years agoHi Anonymous
1. Create a date table using the function CalendarAuto()
2. Create a measure with the following DAX code
YTD SamePeriodLastYear =
VAR YTD_Value =
CALCULATE ( SUM ( [SalesVolume] ); DATESYTD ( 'Calendar'[Date].[Date] ) )
VAR MaxDate =
CALCULATE ( MAX ( 'DateTable'[Date] ); ALL ( 'DateTable'[Date] ) )
RETURN
CALCULATE (
[YTD_Value];
SAMEPERIODLASTYEAR (
INTERSECT (
VALUES ( 'DateTable'[Date].[Date] );
DATESBETWEEN ( 'DateTable'[Date].[Date]; BLANK (); MaxDate )
)
)
)
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge