Date: Tue, 24 Jul 2007 11:37:23 -0400
Reply-To: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Subject: Re: Question about Proc Tabulate
On Mon, 23 Jul 2007 11:59:05 -0400, Sridhar, Nagakumar
<nagakumar.sridhar@SPCORP.COM> wrote:
>Gerhard:
>
> Thanks a lot! That helped.
I imagine it helped by getting rid of the variable name. However, I think
you mischaracterized the problem. I believe that "Total Screened" is not a
variable label, but rather the value, or formatted value, of the first, or
perhaps only, level of the variable.
>
>Regards
>
>Kumar
>
>-----Original Message-----
>From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
>Gerhard Hellriegel
>Sent: Monday, July 23, 2007 11:55 AM
>To: SAS-L@LISTSERV.UGA.EDU
>Subject: Re: Question about Proc Tabulate
>
>
>You could try to supress the variable names by =" " in the table
>statement, like:
>
> table scrnd=" " enrlld=" ", race=" "/contents='*' misstext='*';
>
>Maybe that does what you want.
>
>Gerhard
>
>
>On Mon, 23 Jul 2007 11:36:56 -0400, Sridhar, Nagakumar
><nagakumar.sridhar@SPCORP.COM> wrote:
>
>>Hi All:
>> This has to do with the way my output is reported. I have the
>>output being reported as follows:
>>
>> scrnd .................
>>
>> Total Screened .................
>>
>>
>>The left column has the variable name, as well as the Label, printed.
>>What I'd like is just the label to appear not the variable name. That
>>is, I'd just like to have it as:
>>
>>Total Screened ------------------
>>
>>Can some one tell me what I'd need to do to get this. Below is my code:
>>
>> proc tabulate data=dem3 format=10.;
>>
>> class race scrnd enrlld;
>>
>> table scrnd enrlld, race/contents='*' misstext='*';
>>
>> format race racel.;
>>
>> label enrlld ='Enrolled';
>>
>> title4 "Summary of Subject Populations";
>>
>> run;
>>
>>
>>
>>
>>Thanks and regards
>>
>>Kumar Sridhar
>>
>>*********************************************************************
>>This message and any attachments are solely for the
>>intended recipient. If you are not the intended recipient, disclosure,
>>copying, use or distribution of the information included in this
>>message is prohibited -- Please immediately and permanently delete.
>*********************************************************************
>This message and any attachments are solely for the
>intended recipient. If you are not the intended recipient,
>disclosure, copying, use or distribution of the information
>included in this message is prohibited -- Please
>immediately and permanently delete.
|