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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm trying to show the data in a table from 2 months ago using this Measure:
-2 Month Inbound Calls = calculate(SUM('Queue Perf - Total'[Calls]),filter('Queue Perf - Total',month('Queue Perf - Total'[Date])-month(today())=-2))Took me a bit to realise why it wasn't working, but essentially it's calculating 2(Feb) - 12(Dec) and not calculating <Take 2 months off today's date and show me that data>.
Is there a way to produce that result using DAX?
Solved! Go to Solution.
Hi @Anonymous,
Based on my test, you could refer to below formula:
Sample data:
Create below measure:
Measure = CALCULATE(SUM(Table1[Value]),FILTER('Table1','Table1'[Date]<=TODAY()-60))
Result:
Regards,
Daniel He
Hi @Anonymous,
Based on my test, you could refer to below formula:
Sample data:
Create below measure:
Measure = CALCULATE(SUM(Table1[Value]),FILTER('Table1','Table1'[Date]<=TODAY()-60))
Result:
Regards,
Daniel He
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!