|
On Mar 3, 3:18 pm, Paul <paul.vonhip...@chase.com> wrote:
> Using ODS, I know how to direct the output of proc means to a file,
> but I don't know how to prevent that same output from appearing in the
> output window.
>
> What I have is something like this:
>
> proc means;
> var x; class y;
> ods output Summary=mean_x_by_y;
> run;
>
> There are many values of y, so my output overflows the output window.
> I don't need it in the output window, but I do want it in the output
> file mean_x_by_y.
>
> Any advice most appreciated....
>
> Thanks!
> Paul
before defining the ods destinations you want, use statement
ods _all_ close ;
|