Statalist The Stata Listserver


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: Re: Getting end of month


From   "Michael Blasnik" <[email protected]>
To   <[email protected]>
Subject   st: Re: Getting end of month
Date   Sat, 14 Oct 2006 14:41:47 -0400

No, but it's a fairly simple calculation, just subtract 1 day from the first of the next month and make sure to deal with December dates:

gen newdate=mdy( month(date)+1,1,year(date))-1
replace newdate=mdy(12,31,year(date)) if month(date)==12

It could be done in a single line by combining these using cond()

Michael Blasnik

----- Original Message ----- From: "Nuno Soares" <[email protected]>
To: <[email protected]>
Sent: Saturday, October 14, 2006 1:50 PM
Subject: st: Getting end of month



Hi everyone,

I'm converting a set of dates to the end of the respective month, for
instance:
20Jan91 -> 31Jan91
10Mar05 -> 30Mar05
Etc.

Does anyone knows a function in Stata that does this automatically?
*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index