我用同样的代码,用9.4输出是有边框的,9.2没有,对比如下,请问是什么原因?
options pageno=1 nodate pagesize=30 linesize=70 noxwait;
ods listing close;
ods noresults;
ods html path="" body="" style=printer metatext="charset=gb2312";
proc tabulate data=jadt_chade;
class cus/missing;
var freq1 brall_cd;
table (cus="" all=""),
freq1=""*sum=频数
/rts=25 indent=4 box="";
title "";
run;