|
On Wed, 21 Mar 2007 14:28:18 -0400, Rathindronath <mehedisas@YAHOO.COM> wrote:
>Sorry I got it. I just need the command for not to print a tabulate in the
>output file. I just need to create the dataset. can you help me?
Use
ods listing close;
before the TABULATE step and
ods listing;
after.
Another possibility is to use PROC SUMMARY instead of PROC TABULATE.
|