| 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 |
|
| 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;
|