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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Anyone have a clue how I can calculate the following DAX equation for the same period last year?
Solved! Go to Solution.
Hi @kajelliott ,
I am not sure how your semantic model looks like, please try the following code as shown below.
Previous Est Value =
CALCULATE (
SUMX (
FILTER (
'table',
'table'[Created On] <= MAX ( 'Calendar'[Date] )
&& (
ISBLANK ( 'table'[Close Date] )
|| 'table'[Close Date] > MAX ( 'Calendar'[Date] )
)
),
( 'table'[Est. Revenue] )
),
CROSSFILTER ( 'table'[Created On], 'Calendar'[Date], NONE ),
SAMEPERIODLASTYEAR ( 'Calendar'[Date] )
)
If I've misunderstood you, please provide detailed sample data and the results you are hoping for. We can better understand the problem and help you. Show it as a screenshot or excel. Please remove any sensitive data in advance.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kajelliott ,
I am not sure how your semantic model looks like, please try the following code as shown below.
Previous Est Value =
CALCULATE (
SUMX (
FILTER (
'table',
'table'[Created On] <= MAX ( 'Calendar'[Date] )
&& (
ISBLANK ( 'table'[Close Date] )
|| 'table'[Close Date] > MAX ( 'Calendar'[Date] )
)
),
( 'table'[Est. Revenue] )
),
CROSSFILTER ( 'table'[Created On], 'Calendar'[Date], NONE ),
SAMEPERIODLASTYEAR ( 'Calendar'[Date] )
)
If I've misunderstood you, please provide detailed sample data and the results you are hoping for. We can better understand the problem and help you. Show it as a screenshot or excel. Please remove any sensitive data in advance.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I believe this worked, thank you!
@kajelliott you can use the SAMEPERIODLASTYEAR function. Modify your DAX formula as follows:
SamePeriodLastYear Est Value =
CALCULATE(
SUMX(
FILTER(
ALL('table'),
'table'[Created On]
>= SAMEPERIODLASTYEAR(MAX('Calendar'[Date]))
&& (ISBLANK('table'[Close Date]) || 'table'[Close Date] > SAMEPERIODLASTYEAR(MAX('Calendar'[Date])))
),
'table'[Est. Revenue]
),
CROSSFILTER('table'[Created On], 'Calendar'[Date], NONE)
)@DallasBaba - thanks for your suggestion!
Coming up with an error around the calendar date when SAMEPERIODLASTYEAR is included in the expression.
Error states 'The first argument to 'SAMEPERIODLASTYEAR' must specify a column'
Any thoughts?
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 15 | |
| 9 | |
| 8 | |
| 7 | |
| 5 |