This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi Team,
I am trying to create the dax for the Maximum date in the previous month. Could you please share your idea?
Solved! Go to Solution.
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!
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!
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.
in my data set upto 31 jan 2024 data have . so..
max prevoius month should be 31 dec 2023
hope this alternative is userful for you
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 10 | |
| 8 | |
| 8 | |
| 6 | |
| 6 |