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,
I need help in writing a DAX function to find the last date of previous month from Date Column based on the Date filter selection. For example If I select 23-08-22 date, function should be able to throw output 29-07-22 as last date of previous month. Below is the sample date column data.
| Date |
| 18-07-2022 |
| 19-07-2022 |
| 20-07-2022 |
| 21-07-2022 |
| 22-07-2022 |
| 25-07-2022 |
| 26-07-2022 |
| 27-07-2022 |
| 28-07-2022 |
| 29-07-2022 |
| 01-08-2022 |
| 02-08-2022 |
| 03-08-2022 |
| 04-08-2022 |
| 05-08-2022 |
| 08-08-2022 |
| 09-08-2022 |
| 10-08-2022 |
| 11-08-2022 |
| 12-08-2022 |
| 15-08-2022 |
| 16-08-2022 |
| 17-08-2022 |
| 18-08-2022 |
| 19-08-2022 |
| 22-08-2022 |
| 23-08-2022 |
Solved! Go to Solution.
You can try:
Proud to be a Super User! | |
Hi,
Please check the below picture and the attached pbix file.
It is for creating a measure.
Expected output measure: =
VAR _previousmonthenddate =
EOMONTH ( MAX ( Data[Date] ), -1 )
VAR _result =
MAXX (
FILTER ( ALL ( Data[Date] ), Data[Date] <= _previousmonthenddate ),
Data[Date]
)
RETURN
_result
It worked! Thank you.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a measure.
Expected output measure: =
VAR _previousmonthenddate =
EOMONTH ( MAX ( Data[Date] ), -1 )
VAR _result =
MAXX (
FILTER ( ALL ( Data[Date] ), Data[Date] <= _previousmonthenddate ),
Data[Date]
)
RETURN
_result
You can try:
Proud to be a Super User! | |
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 |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 61 | |
| 36 | |
| 29 | |
| 22 | |
| 22 |