mingfeng07 发表于 2014-12-23 16:47 
可以通过选择在代码中添加标题或者变量标签的等形式来区别不同的表格
proc printto;run;
proc freq data=a&m ;
tables dalpflag*dcommarkflag /nopercent norow nocol ;
weight intercept;
run;
proc printto log="e:\newlog1" new;run;
filename outp ' E:\output.txt';
proc printto print= outp new;run;