cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
bosleyjarrett
Frequent Visitor

Calculating Moving 90 Day sum and plotting on time graph

Hello,

 

I am trying to calculate a moving 90 day sum that I am then plotting on a graph with the actual months (think June has June, May & April data, May has March, April, and May data etc). My data set is cost data for each product for each month with a number of other measures. I have been attempting this through various versions of the "Calculate(,FILTER( or Calculate(,DatesBetween(" functions with no luck. Has anyone done this before? I also tried calculating a number of custom columns where I would sum the previous month and the month before and add the columns together but that did not work either.

1 ACCEPTED SOLUTION
Phil_Seamark
Microsoft
Microsoft

Hi @bosleyjarrett

 

This should be close and works for me.  This calculated measure assumes a relationship between the Sales and Dates tables.

 

 

Measure = CALCULATE(
                    SUM('Sales'[Sales Qty]),
		    -------------------------------------------------------------------------
	            DATESINPERIOD('Dates'[Date],LASTDATE('Dates'[Date]),-90,DAY)
		  )

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Microsoft
Microsoft

Hi @bosleyjarrett

 

This should be close and works for me.  This calculated measure assumes a relationship between the Sales and Dates tables.

 

 

Measure = CALCULATE(
                    SUM('Sales'[Sales Qty]),
		    -------------------------------------------------------------------------
	            DATESINPERIOD('Dates'[Date],LASTDATE('Dates'[Date]),-90,DAY)
		  )

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

That looks to have worked! Thanks Phil!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors