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 (June 2002, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 24 Jun 2002 11:25:50 -0400
Reply-To:     "Fehd, Ronald J." <rjf2@CDC.GOV>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Fehd, Ronald J." <rjf2@CDC.GOV>
Subject:      Re: Real Numbers on PROC FREQ
Comments: cc: "Balint, Jess" <JBalint@ALLDATA.NET>
Content-Type: text/plain; charset="iso-8859-1"

> From: Balint, Jess [mailto:JBalint@ALLDATA.NET] > Hello all. I am using the freq procedure, but the output is > 3.16E7. I need > to have the exact number like 3164532 or whatever. Does > anyone know the > option to enable this? Thank you.

You do have the more-or-less exact number. you probably need to change the format associated with the number the default -- best8. -- is not always appropriate for Really Big Numbers.

proc FREQ data = ...; format BigNum comma12.; tables BigNum;

Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov

remember perspective: the error is not always where it seems to occur! -- RJF2

remember perspective: the default format is not always appropriate! -- RJF2


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