|
Igor,
Use Proc Report with the FLOW option:
Sample (untested code):
proc report nowindows data=your input ls=252;;
column yourvariable;
define yourvariable / width=250 flow;
quit;
run;
HTH,
Dennis Diskin
Igor Kurbeko <ikurbeko@ATHEROGENICS.COM>
Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
09/23/2003 01:03 PM
Please respond to Igor Kurbeko
To: SAS-L@LISTSERV.UGA.EDU
cc:
Subject: displaying a char variable over 255 in length
I have only one character variable in my dataset. It's 300 in length (we
use SAS 8.02 so it's possible).
But whenever I try to run proc print on it I see only the first 252
characters out of 300.
And here's my LOG:
WARNING: Data too long for column "x"; truncated to 252 characters to
fit.
The question is how do I get to display all 300 characters?
Thanks,
Igor Kurbeko
Clinical Programmer Analyst
678 336 4328
ikurbeko@atherogenics.com
A waygoer will overcome the way
|