SAS ODS RTF表列标题

发布于 2025-01-26 15:37:19 字数 344 浏览 3 评论 0原文

我正在使用SAS ODS创建RTF文件。当我使用“ ODS文本”添加文本时,表的列标题在下一页中不重复,而仅在表格开始。 当我删除“ ODS文本”时,我在所有页面中都会获得列名。由于我需要表上方的文本(不在标题/标题中),您可以建议解决方案吗?

data chk;
 set sashelp.class;
 output; output;
run;

ods rtf file = "xx\check.rtf";
ods escapechar = '^';

title " ";

ods text="ods text";

proc report nowd data=chk ;
run;

ods rtf close;

I am creating a RTF file using SAS ODS. When I add a text using "ODS TEXT", the column headers of a table are not repeating in next page but comes only at the start of the table.
When I remove the "ODS TEXT", I get columns names in all pages. Since I need a text above the table (not in header/title), can you suggest a solution?

data chk;
 set sashelp.class;
 output; output;
run;

ods rtf file = "xx\check.rtf";
ods escapechar = '^';

title " ";

ods text="ods text";

proc report nowd data=chk ;
run;

ods rtf close;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文