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

Popular posts from this blog

python - Installing PyDev in eclipse is failed -

PHP OOP-based login system -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -