Tuesday, February 12, 2013

SAS: Suppress PROC output

I need to run a SAS PROC repeatedly.  I will append the results to a file.  So I want to suppress the PROC's normal printed output:

    * suppress lengthy proc outputs;
    filename junk dummy;
    proc printto print=junk;
    run;

    * do your thing here ;


    * restart print;
    proc printto;
    run;




No comments:

Post a Comment