Forum Discussion
Anonymous
3 years agoNot applicable
Create Measure for Last Completed Month
Hello,
I would like to create a measure for the last completed month, formatted as such: YYYYMM. Is there an easy measure to accomplish this?
Thanks in advance!
You can try
Last completed month = FORMAT( EOMONTH( TODAY(), 1), "YYYYMM")
2 Replies
- johnt75Super User
You can try
Last completed month = FORMAT( EOMONTH( TODAY(), 1), "YYYYMM")- AnonymousNot applicable
Thanks for the reply. It did not seem to like that format. I updated it as follows:
Last Completed Month = FORMAT(EOMONTH(TODAY(), -1), "YYYY/MM"). I should be able to make this work.Thank you!