実行時に数値の出力形式を指定できるようにします。
カテゴリ: | 特殊 |
proc format; value writfmt 1='date9.' 2='mmddyy10.'; run; data dates; input number key; datefmt=put(key,writfmt.); date=putn(number,datefmt); datalines; 15756 1 14552 2 ; proc print data=dates; title 'Working with Dates and Formats'; run;
data _null_; length y $30; y=putn(today(),'weekdate.-l',30); put '*' y $char30. '*'; run;
*Monday, November 19, 2012 *