|
Hello,
I would like to print a variable that contains 2 carriage returns and
have it actually execute the carriage returns so that there are 3
lines for that 1 observation. How can this be accomplished? Thanks.
data test;
line1= 'line1';
line2= 'line2';
line3= 'line3';
text= cat(line1,'0D0A'x,line2,'0D0A'x,line3,'0D0A'x);
run;
proc print data=test;
run;
|