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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Calculating differences (previous month)

Hi,

I have to calculate the change in KPI vs Last month. When I use perviousmonth or DATEADD DAX I get correct result when I have months in the table. However, when I remove the months and want to see the change for the current month only (that is for Jan'21 vs Dec'20), I see the difference between 2020 total and Jan'21 result.

How do I fix that?

I just want to see the results for Jan'21 and see the change vs Dec'20 not vs the whole of 2020. 

 

 

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Don't @FAA,

You can create measures like this:

Previous month =
CALCULATE (
    SUM ( 'Table'[Value] ),
    DATESBETWEEN ( 'Table'[Date], EDATE ( TODAY (), -1 ), TODAY () )
)

Attached to a sample file in the following, you hope it could help.

Best regards
Community Support Team _ Yingjie Li
If this post helps,then consider Accepting it as the solution to help other members find it faster.

View solution in original post

2 REPLIES 2
v-yingjl
Community Support
Community Support

Don't @FAA,

You can create measures like this:

Previous month =
CALCULATE (
    SUM ( 'Table'[Value] ),
    DATESBETWEEN ( 'Table'[Date], EDATE ( TODAY (), -1 ), TODAY () )
)

Attached to a sample file in the following, you hope it could help.

Best regards
Community Support Team _ Yingjie Li
If this post helps,then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@Anonymous , there can be few reason time intelligence can fails

 

The date table is not marked as the date table. Date in fact has a timestamp

refer this video : https://youtu.be/OBf0rjpp5Hw

 

and then try measure like


MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
last month Sales = CALCULATE(SUM(Sales[Sales Amount]),previousmonth('Date'[Date]))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.