Date Utilities in SAS
Posted on Sep 17, 2014 in Computer Science • Tagged with programming, SAS, date
Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.
Convert a Date to a String of the Format "YYYYMMDD"
data _null_;
x = put("23Aug2014"d, yymmddn8.);
put x date9.;
run;
or
data _null_;
x = putn("23Aug2014 …
Continue reading