Date: Wed, 16 Jul 2008 16:35:46 -0700
Reply-To: Adriano Rodrigues <adriano@GPP.COM.BR>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Adriano Rodrigues <adriano@GPP.COM.BR>
Subject: RES: how to control decimals in proc surveyfreq output?
Content-Type: text/plain; charset="US-ASCII"
Hi all,
What i am doing is:
data anax1;
set anax;
proc surveyfreq ;
table p5 /cl nowt ;
ods output OneWay=t;
weight wg;
format p5 p5v.;
run;
proc print data=t;
var f_p5 percent lowercl uppercl;
format percent lowercl uppercl 9.2;
run;
Does anyone know hot to apply this 9.2 format to tables direct into
surveyfreq table? Or I really need this step with proc print?
Thanks in advance,
Adriano
|