Forum Discussion
Calculating Same Period Last Year
- 5 years ago
So I found a solution that worked for me. I had to create to create a column in my Date table that is a True/False if the current year dates are the same period as last year. I then add that column as a filter on a visual and then my Same Period LY Sales measure shows the correct amount.
Same Period LY Sales = CALCULATE(SUM(SalesTable[TotalSales]), SAMEPERIODLASTYEAR(DateTable[Date]))
IsSamePeriodLY = IF(DateTable[Date] >= DATE(YEAR(TODAY()), 1, 1), 1 &&
IF(DateTable[Date] <= TODAY()-1, 1, 0))
So I found a solution that worked for me. I had to create to create a column in my Date table that is a True/False if the current year dates are the same period as last year. I then add that column as a filter on a visual and then my Same Period LY Sales measure shows the correct amount.
Same Period LY Sales = CALCULATE(SUM(SalesTable[TotalSales]), SAMEPERIODLASTYEAR(DateTable[Date]))
IsSamePeriodLY = IF(DateTable[Date] >= DATE(YEAR(TODAY()), 1, 1), 1 &&
IF(DateTable[Date] <= TODAY()-1, 1, 0))