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
Paulyeo11
Impactful Individual
Impactful Individual

How to create expression for last 2 month sales ?

1 ACCEPTED SOLUTION

@Paulyeo11  , YTD was other topics or

You can have rolling of any months by replacing values

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

 

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

View solution in original post

5 REPLIES 5
ryan_mayu
Super User
Super User

@Paulyeo11 

do you only consider month? Since i see you circle all Oct and Nov sales amount for both 2019 and 2020.

if I did not misunderstand your request. you can try this

Measure 2 = 
VAR _max=max('SALES'[date])
VAR last1=month(_max)-1
VAR last2=month(_max)-2
RETURN CALCULATE(sum(SALES[sales]),FILTER(SALES,month(SALES[date])in {last1,last2}))

11.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Paulyeo11
Impactful Individual
Impactful Individual

Hi Ryan 

Thank you for your sharing 

Amit expression working fine 

I make some mistake in the image , I only refer to same year 

amitchandak
Super User
Super User

@Paulyeo11 , Try rolling formula, With date table

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

 

If means every month will display 2 months of data '

In case you want two month with any selected date -https://www.youtube.com/watch?v=duMSovyosXE

Hi Amit

 

what i need is create a expression for compute last X month . I have change the expression from 12 to 11 , i hope to get YTD sales. Hope you can help me.

 

Paulyeo11_1-1605924324426.png

 

@Paulyeo11  , YTD was other topics or

You can have rolling of any months by replacing values

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

 

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

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.