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
Anonymous
Not applicable

Need Help in trailing average

I have a column of List_Date  (mm/dd/yyy) for dates beginning in 2012-2017. I also have a Sales_Pric column, for which I would like to calculate the 3-month trailing average and 12-month trailing average of the NUMBER of sales/mo. 

 

We need to use sales as count of sales. 

 

Please let me know first I need to add one column of count of the sales? or Sales_Pric column can be user directly to find the trailing average.

Screenshot_1.png

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Here is a 12 month trailing average that i've been using.  This requires a Date Table which includes a column called "YEARMONTH" which is simply a concatination of year and month.  I.e. January 2017 = "201701"

 

Measure 12 Mth Avg = CALCULATE( 
	if(
		countrows(values('Dim - Date Table'[YearMonth])) = 1, 
		[Your Measure], 
		AVERAGEX(
			values('Dim - Date Table'[YearMonth]), 
			[YourMeasure]
		)
	),
	DATESINPERIOD(
		'Dim - Date Table'[Date], 
		LASTDATE('Dim - Date Table'[Date]), 
		-12, 
		MONTH
	)
)


Would this work for you?

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Here is a 12 month trailing average that i've been using.  This requires a Date Table which includes a column called "YEARMONTH" which is simply a concatination of year and month.  I.e. January 2017 = "201701"

 

Measure 12 Mth Avg = CALCULATE( 
	if(
		countrows(values('Dim - Date Table'[YearMonth])) = 1, 
		[Your Measure], 
		AVERAGEX(
			values('Dim - Date Table'[YearMonth]), 
			[YourMeasure]
		)
	),
	DATESINPERIOD(
		'Dim - Date Table'[Date], 
		LASTDATE('Dim - Date Table'[Date]), 
		-12, 
		MONTH
	)
)


Would this work for you?

 

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.