Statalist The Stata Listserver


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

st: RE: Re: Getting end of month


From   "Nuno Soares" <[email protected]>
To   <[email protected]>
Subject   st: RE: Re: Getting end of month
Date   Sat, 14 Oct 2006 20:23:34 +0100

Thanks Michael! This was a really easy solution.  

-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Michael Blasnik
Sent: 14 October 2006 19:42
To: [email protected]
Subject: st: Re: Getting end of month

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/

*
*   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