Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext 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
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.
Solved! Go to Solution.
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
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
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 23 |