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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
almudeve
Frequent Visitor

Previous MTD Calculation

Dear community,

 

I have the following DAX for calculate the previous MTD sales and it is not working as I expected.

Today is 10th March, and I need the sales from 1st February to 10th February, and I am getting the whole month instead of the 10 first days.

Is the following DAX wrong? Do you have any idea why is not doing the calculate I'm looking for?

 

Sales_PreviousMTD =
Var _LastDate = LASTDATE(sales_table[date])
return
CALCULATE(
    SUM(sales_table[sales_amount]),
    DATEADD(
        FILTER(DATESMTD(sales_table[date]),_LastDate),-1,MONTH)
        )

 

Thanks!

1 ACCEPTED SOLUTION

Hi @FreemanZ ,

 

You almost got it!!

I have resolved it and it is close to your solution, thank you very much!!

The solution is:

 

Sales_PreviousMTD =
Var _LastDate = LASTDATE(sales_table[date])
return
CALCULATE(
    SUM(sales_table[sales_amount]),
    DATESMTD(
        DATEADD(_LastDate),-1,MONTH)
        )
)
 
Hope this helps to anyone who is facing the same issue!

 

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @almudeve ,

 

Not sure if i fully get you. Supposing you have a data table like:

Date Sales
1/1/2023 1
1/8/2023 1
1/15/2023 1
1/22/2023 1
1/29/2023 1
2/5/2023 1
2/12/2023 1
2/19/2023 1
2/26/2023 1
3/5/2023 1
3/12/2023 1

 

1) try to add a calculated dates table like:

dates = 
ADDCOLUMNS(
    CALENDAR(MIN(data[Date]), MAX(data[Date])),
    "YY/MM", FORMAT([Date], "YY/MM")
)

 

2) relate data[date] with dates[date]

 

3) plot a table visual with dates[yy/mm] with a measure like:

PreMTD = 
 CALCULATE(
    SUM(data[Sales]),
    DATEADD(DATESMTD(dates[Date]), -1, MONTH),
    DAY(data[Date])<=DAY(TODAY())
)

 

it works like:

FreemanZ_0-1710135449538.png

 

Hi @FreemanZ ,

 

You almost got it!!

I have resolved it and it is close to your solution, thank you very much!!

The solution is:

 

Sales_PreviousMTD =
Var _LastDate = LASTDATE(sales_table[date])
return
CALCULATE(
    SUM(sales_table[sales_amount]),
    DATESMTD(
        DATEADD(_LastDate),-1,MONTH)
        )
)
 
Hope this helps to anyone who is facing the same issue!

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.