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

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -