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
You can create a measure with the filter you want and use it for the data in your graph. Something like this should work:
Forecast+/-5wks:=CALCULATE(SUM(Sales[Forecast]),FILTER(Sales,Sales[WeekDate]<=TODAY()+35 && Sales[WeekDate]>=TODAY()-35))
If you need exactly 5 weeks before and 5 after, you can replace the TODAY()'s with TODAY()-WEEKDAY(TODAY(),3))
If your data isn't already aggregated by start of week, you can use the minus weekday formula just noted to add a calculated column to use as your x-axis.
You can create a measure with the filter you want and use it for the data in your graph. Something like this should work:
Forecast+/-5wks:=CALCULATE(SUM(Sales[Forecast]),FILTER(Sales,Sales[WeekDate]<=TODAY()+35 && Sales[WeekDate]>=TODAY()-35))
If you need exactly 5 weeks before and 5 after, you can replace the TODAY()'s with TODAY()-WEEKDAY(TODAY(),3))
If your data isn't already aggregated by start of week, you can use the minus weekday formula just noted to add a calculated column to use as your x-axis.
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!