sorry to bump this as just wanted to add what I found that finally worked for me in similar circumstances:
http://support.sas.com/kb/20/784.html
data _null_;
length data $1;
INFILE in_filename recfm=n;
file out_filenmae recfm=n mod;
input data $char1. @@;
put data $char1. @@;
run;Although this is written for STP web process it should apply when writting to another file as the _webout is similar. The secret seems to be the recfm=n and the @@s.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.