| Date: | Mon, 29 Mar 1999 08:49:42 GMT |
| Reply-To: | christopher <appreciate@BIGFOOT.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | christopher <appreciate@BIGFOOT.COM> |
| Organization: | The Chinese University of Hong Kong |
| Subject: | Qu: Proc format |
|---|
Hi,
I am trying to use proc format as
eg
age
______
5
6
7
10
60
80
40
continue in similar fashion
unknown
50
the field 'age' is character, I try to use
proc format;
value $aget
low-<'20'='<20'
'20'-'29'='20-29'
'30'-'39'='30-39'
etc.
but it same that '15' >'120', unknow miss with some categories.
Please tell me how to solve this problem.
Thanks
|