LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2008, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page