Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
After creating a dimdate table I tried to calculate a measure by using SAMEPERIODLASTYEAR but it does not work.
Solved! Go to Solution.
Hello @peluca,
What is the structure of your data table? Also, I am hoping you have created the relationship between the date of your fact table and the calendar table.
I have recreated the scenario with a sample data:
And created a calendar table:
Calendar =
ADDCOLUMNS (
CALENDAR ( MIN ( dtTable[Order Date] ), MAX ( dtTable[Order Date] ) ),
"Year", YEAR ( [Date] ),
"Month", DATE ( YEAR ( [Date] ), MONTH ( [Date] ), 1 )
)
And mark it as a date table.
Created the relationship:
Created measures:
Total Orders = SUM(dtTable[Order Quantity])
PY Orders =
CALCULATE ( [Total Orders], SAMEPERIODLASTYEAR ( 'Calendar'[Date] ) )
Getting the results in visual:
Regards,
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Hello @peluca,
What is the structure of your data table? Also, I am hoping you have created the relationship between the date of your fact table and the calendar table.
I have recreated the scenario with a sample data:
And created a calendar table:
Calendar =
ADDCOLUMNS (
CALENDAR ( MIN ( dtTable[Order Date] ), MAX ( dtTable[Order Date] ) ),
"Year", YEAR ( [Date] ),
"Month", DATE ( YEAR ( [Date] ), MONTH ( [Date] ), 1 )
)
And mark it as a date table.
Created the relationship:
Created measures:
Total Orders = SUM(dtTable[Order Quantity])
PY Orders =
CALCULATE ( [Total Orders], SAMEPERIODLASTYEAR ( 'Calendar'[Date] ) )
Getting the results in visual:
Regards,
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Thanks so much for your help!!
I had an issue regarding the format of my dimdate table