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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi all, I'm trying to figure out a way to use the DATEADD function or similar while at the same time using a dynamic parameter for the comparison. I want to type in 30 and have it show me an existing measure, but filtered for the last 30 days. I've accomplished that successfully using the measure below (where "X Value" is the parameter):
MEASURE (Last X Days) = CALCULATE( [MEASURE], DATESBETWEEN('Calendar'[Date],
TODAY() - 'Comparison Period'[Comparison Period X Value]+1,TODAY()) )
I'd like to compare to the same period last year using DATEADD. When I try to use CALCULATE with [MEASURE (Last X Days)] as the first argument, and DATEADD for last year as the filter argument, it returns the same result as MEASURE (Last X Days). I suppose I could just subtract 365 from each of the dates above, but I would prefer to use the DATEADD function so I can do the same thing with months, quarters, with changing numbers of days.
Any ideas? Thanks!
Solved! Go to Solution.
Hi,
You may refer to my solution in this file.
Hope this helps.
@jl20,
Could you please share dummy data of your table and post expected result? We also need to know the DAX formula of the [Measure].
Regards,
Lydia
Hi,
You may refer to my solution in this file.
Hope this helps.
That worked well. Thanks Ashish!
You are welcome.