Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not 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 against January 2022 to August 2022. (But the issue is i cant seem to get the January 2022 - August 2022, at least not without hardcording)

I've tried Using a filter that filters my dimension date <= Max(FactSalesVolume.Date) with the Max(DimDate.Year) -1  , however it is currently showing blank. 

Could someone help me on this please thanks.

1 ACCEPTED SOLUTION
DataVitalizer
Super User
Super User

 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

 

View solution in original post

2 REPLIES 2
DataVitalizer
Super User
Super User

 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
Super User

 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

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.