Date: Tue, 6 Dec 2005 10:37:03 -0500
Reply-To: Michael Ni <michael.ni@COGNIGENCORP.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Michael Ni <michael.ni@COGNIGENCORP.COM>
Subject: Re: Help with label statement
Baogong,
You might want to try the proc report, which allows you to control the
column width.
proc report data=3Dprovider(obs=3D1);
column prov id no_recip avg_state time;
define ...
.......
run;
HTH,
Michael
|