| Date: | Mon, 29 Sep 1997 11:20:44 -0400 |
| Reply-To: | Jens <JMS@ONLINE.REALTECH.DE> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Jens <JMS@ONLINE.REALTECH.DE> |
| Organization: | roka EDV und Datenkommunikationsberatung GmbH, Krefeld |
| Subject: | Re: Proc Tabulate - help needed |
| Content-Type: | text/plain; charset="iso-8859-1" |
> >I have come across a problem with Proc Tabulate. I have a class variable
> >CAT which hold values 1 to 7. value 1 and 2 both have the same format
> >label, When tabulate displays the table it combines values 1 and 2 into
> >the same row, since both have the same formatted value. I must have come
> >across this before ! How can I get tabulate to recognise the class data
> >values and not the formatted values ?
You can use
PROC TABULATE;
CLASS CAT;
TABLE CAT;
FORMAT CAT;
RUN;
the format is ignored then.
Jens
|