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 (January 2005, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 27 Jan 2005 15:05:03 -0800
Reply-To:     David Ryerson <ryersond@YAHOO.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
Comments:     DomainKeys? See http://antispam.yahoo.com/domainkeys
From:         David Ryerson <ryersond@YAHOO.COM>
Subject:      picture formats
Content-Type: text/plain; charset=us-ascii

Hello

I have been using the following format with good success for several days.

proc format; picture pic(round) 0 - < 10 = "000.0%)" ( prefix = "(" ) 10 - < 100 = "000.0%)" ( prefix = "(" ) 100 - < 1000 = "000.0%)" ( prefix = "(" ) other = " " ; run;

I've then been assigning the format in proc report with: format=pic8.;

This worked fine until I came across percentages less than 1%. 0.5% is showing up as (5%) and likewise for other percentages < 1%.

What can I do to my format to accomodate these new numbers?

Thanks! Dave Ryerson

Up until now all of my percents

__________________________________ Do you Yahoo!? The all-new My Yahoo! - Get yours free! http://my.yahoo.com


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