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 (October 2007, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 5 Oct 2007 01:24:05 -0700
Reply-To:   barnipaz@GMAIL.COM
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   barnipaz@GMAIL.COM
Organization:   http://groups.google.com
Subject:   Re: format question
Comments:   To: sas-l@uga.edu
In-Reply-To:   <OF654E065A.F7A1ABD4-ON8625736A.00718D76-8625736A.0071945A@fd9ns01.okladot.state.ok.us>
Content-Type:   text/plain; charset="us-ascii"

Option One

proc format; picture test low-high = '00000000001,00)' (multiplier=100 prefix='($'); run;

Option Two In this case it manages the sign

proc format; picture test low-0 = '00000000001,00)' (multiplier=100 prefix='(-$') 0-high= '00000000001,00)' (multiplier=100 prefix='($'); run;


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