sas - How to print one observation in one single line? -
sas automatically split long observation several pages. wonder how can use options print 1 obs in 1 single line.
another option using ods output, wont cut line:
ods html file='filename.xls' style=minimal; proc print data=dataset(obs=1); run; ods html close;
Comments
Post a Comment