|
29 data _null_;
30 y = 'CCYYMM';
31 y = '200711';
32 d = input(y,yymmn6.);
33 format d mmyyn.;
34 put (_all_)(=);
35 run;
y=200711 d=112007
On 11/5/07, cherub <cherub2life@yahoo.com> wrote:
> I have a question, there are some date date whose format are ccyymm. Does somebody know how to read this data and convert it to mmyyyy?
>
> Thanks
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
|