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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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))

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))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors