Word wrapping issue in text file export
Posted
by
photec
on Stack Overflow
See other posts from Stack Overflow
or by photec
Published on 2014-06-03T15:23:15Z
Indexed on
2014/06/03
15:24 UTC
Read the original article
Hit count: 110
sas
I just whipped up a program to export a dataset to a text file and am running into a issue with data from an observation being wrapped to the line below in the exported file. Below is a stripped down version of my program and the text seems to be wrapping at column 1025. Does anyone happen to know why this is occurring and how to go about ensuring that record data stays on its own row? Any help would be greatly appreciated.
data ; set (firstobs = 1 obs = 75); file '\' lrecl = 32767; put first_var $1 ... last_var 1244; run;
© Stack Overflow or respective owner