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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Neel98
Frequent Visitor

Dax: Previous Month calculation

Hi Team,

I am trying to create the dax for the Maximum date in the previous month. Could you please share your idea?

Neel98_0-1669282216606.png

 

1 ACCEPTED SOLUTION
NikhilChenna
Skilled Sharer
Skilled Sharer

Hi @Neel98 , 
Hope you have a datedimension table in your data set, if not create that first and create a one to many relationship from your date table to this table and create the below measure. 


CALCULATE( 
          MAX(Report Date),
          DATEADD('Date Dimension'[date],-1,MONTH)
)

 

Regards,
Nikhil Chenna

 

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

View solution in original post

2 REPLIES 2
NikhilChenna
Skilled Sharer
Skilled Sharer

Hi @Neel98 , 
Hope you have a datedimension table in your data set, if not create that first and create a one to many relationship from your date table to this table and create the below measure. 


CALCULATE( 
          MAX(Report Date),
          DATEADD('Date Dimension'[date],-1,MONTH)
)

 

Regards,
Nikhil Chenna

 

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

month = CALCULATE(MAX('date'[Date]), PREVIOUSMONTH('date'[Date]))
  • MAX('date'[Date]): This function calculates the maximum date from the 'Date' column of your 'date' table.
  • PREVIOUSMONTH('date'[Date]): This function returns a table containing dates from the previous month, considering all dates in the 'Date' column of your 'date' table.
  • CALCULATE: This function evaluates an expression in a modified filter context.

So, when you use CALCULATE with MAX and PREVIOUSMONTH, you're instructing Power BI to calculate the maximum date from the previous month based on the dates in your 'date' table. Your measure will dynamically adjust as the current month changes, always showing the maximum date from the previous month.

This DAX measure should work effectively for your requirement.

 

Anuja_Chaudhari_0-1707219548351.png

in my data set  upto 31 jan 2024 data have . so..

Anuja_Chaudhari_1-1707219589874.png

max prevoius month  should be 31 dec 2023 

 hope this alternative  is userful for you 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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