Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I want to see the previous month date against the existing date column in my dataset.
For e.g. If column DOJ shows the date 15/09/22, the measure should show 15/08/22.
We can achieve this output in Calculated Column by writing following DAX
=Dateadd(DOJ,-1,MONTH)
However I am not sure how can we achieve the same result by writing a measure.
Solved! Go to Solution.
Hi @vishu263 ,
If you really wanna use a measure, you can try this one:
DateMeasure = VAR _year = YEAR ( SELECTEDVALUE ( TablePivot[Date] ) ) VAR _month = MONTH ( SELECTEDVALUE ( TablePivot[Date] ) ) VAR _day = DAY ( SELECTEDVALUE ( TablePivot[Date] ) ) RETURN IFERROR ( DATE ( _year, _month - 1, _day), EOMONTH ( DATE ( _year, _month, 1 ), 0 ) )
Does this work?
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Hi @vishu263 ,
If you really wanna use a measure, you can try this one:
DateMeasure = VAR _year = YEAR ( SELECTEDVALUE ( TablePivot[Date] ) ) VAR _month = MONTH ( SELECTEDVALUE ( TablePivot[Date] ) ) VAR _day = DAY ( SELECTEDVALUE ( TablePivot[Date] ) ) RETURN IFERROR ( DATE ( _year, _month - 1, _day), EOMONTH ( DATE ( _year, _month, 1 ), 0 ) )
Does this work?
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Yes, It does. Thanks a lot for quick solution 🙂
Hi @vishu263 ,
My tip here is to use a date dimension and precalculate this "samedaypreviousmonth" attribute already in the dimension instead of creating a separate measure.
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.