如何打印日期范围
data alldates ;
do dt = '28sep2015'd to '31dec2223'd ;
output ;
end ;
format dt DDMMYY9. ;
run ;
但没有“/”字符,即 从1990年1月20日至20011990
答案 0 :(得分:0)
使用DDMMYYN。格式。
http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000590669.htm
format dt DDMMYYN. ;