Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
gillenl
Regular Visitor

Sum of Next 7 Day Sales

This is a 2 part question: today is 7/13/22

I am trying to calculate my COGS for the next 7 days based on LY COGS.

I started my measure with trying to calculate LY COGS but as you can see in the photo below they seem to be off by 1 day...what am i doing wrong?

COGS Next 7 =
CALCULATE(
[COGS],
DATEADD('Date'[Date], -1, YEAR))
 
Once I have that I would like to do a rolling sum of 7 days looking forward.  
so my true COGS Next 7 would equal LY COGS 7/13/22-7/19/22 - 82,858
How do i create that DAX???

Capture.PNG

 

PLEASE HELP 🐵

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@gillenl , You can get rolling 7 like

 

Rolling 7 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-7,Day))

 

Rolling 7 year behind = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAXX('Date', dateadd('Date'[Date], -1, Year) ),-7,Day))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@gillenl , You can get rolling 7 like

 

Rolling 7 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-7,Day))

 

Rolling 7 year behind = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAXX('Date', dateadd('Date'[Date], -1, Year) ),-7,Day))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.