Re: Proc tabulate....N defaulting on output

  • Follow


Suzanne,

I'm sure it will be easier for someone on SAS-L to respond if you
provide the list with some sample data (in the form of a datastep) and
the code you are using to run the proc tabulate.

Art
------------
On Mar 7, 12:36 pm, Suzanne_P <p2...@safe-mail.net> wrote:
> Help!
>
> "N" and values always appear at the bottom of each column of my proc
> tabulate output. I am not specifying N in the procedure, but N (number
> of observations) is always output at the bottom of each table
> created.
>
> How do I stop N appearing? I would appreciate any help!
>
> Thankyou
> Suzanne.
0
Reply art297 (4237) 3/7/2010 6:07:51 PM

On Mar 7, 11:07=A0pm, art...@NETSCAPE.NET (Arthur Tabachneck) wrote:
> Suzanne,
>
> I'm sure it will be easier for someone on SAS-L to respond if you
> provide the list with some sample data (in the form of a datastep) and
> the code you are using to run the proc tabulate.
>
> Art
> ------------
> On Mar 7, 12:36 pm, Suzanne_P <p2...@safe-mail.net> wrote:
>
>
>
> > Help!
>
> > "N" and values always appear at the bottom of each column of my proc
> > tabulate output. I am not specifying N in the procedure, but N (number
> > of observations) is always output at the bottom of each table
> > created.
>
> > How do I stop N appearing? I would appreciate any help!
>
> > Thankyou
> > Suzanne.- Hide quoted text -
>
> - Show quoted text -

Suzane,

try this...


ods

listing;

ods

html

body

=3D"body.html";
proc tabulate data =3Dlibref.fileref;
   class XXXXX;
   class yyyyy  / order=3Ddata;
   var 123;
     tables
XXXXX=3D{label=3D''STYLE(CLASSLEV)=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FF=
FFFF}}
*{STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}}
All=3D{label=3D'Total'STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}}
*{STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}},
(YYYYY=3D{label=3D''STYLE(CLASSLEV)=3D{FOREGROUND=3D#3366FF
BACKGROUND=3D#FFFFFF}}*{STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}=
}
*123=3D{label=3D''}*N=3D{label=3D''}*f=3D6.)
/BOX=3D {label=3D'abc'STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}};
   run;
ods html close;
0
Reply Killer 3/8/2010 12:28:17 PM


1 Replies
188 Views

(page loaded in 0.045 seconds)

Similiar Articles:













7/21/2012 2:03:52 AM


Reply: