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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Buzz1126
Helper III
Helper III

Last Month Sales Formula

I'm using a live query so I can't use the SELECTEDVALUE() function.

 

I'm trying to create a last 3 month sales measures.  I'm sure there's a more concise way to do this, but my thoughts are to create a last month sales measure, a 2 months ago sales measure, and a 3 months ago sales measure and then sum those measures together. 

 

Here's my measure for last month, however I believe this is summing last months sales for each year as the total is much higher than it should be.  

 

Last Month Invoice Qty = CALCULATE(
	SUM(FactSalesOrderDetail[InvoiceQuantity]),
	FILTER(ALL(ActualDeliveryDate),
		ActualDeliveryDate[FiscalMonthNumber] = max(ActualDeliveryDate[FiscalMonthNumber]) - 1
		)
		)

Basically, the above measure is probably summing last months sales for the whole year.  I need it so sum last months sales for this year only.

 

Thanks in advance

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Buzz1126 

 

You may change it to ALL ( ActualDeliveryDate[FiscalMonthNumber] ). 

https://www.sqlbi.com/articles/filter-arguments-in-calculate/

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Buzz1126 

 

You may change it to ALL ( ActualDeliveryDate[FiscalMonthNumber] ). 

https://www.sqlbi.com/articles/filter-arguments-in-calculate/

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

That was easy! Thank you

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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