具有多列的 SAS Computab 输出

发布于 2024-10-26 10:36:08 字数 134 浏览 0 评论 0原文

有谁知道如何将 SAS 输出 Proc Computab 输出转换为具有多列的 excel 或 rtf 输出。它将所有输出放入一列中,我必须使用“文本到列”来进入多列。关于如何解决这个问题有什么想法吗?

Does anyone know how to make SAS output Proc Computab output into excel or rtf output with multiple columns. It puts all the output into one column, which I have to use "Text to Columns" to get into multiple columns. Any idea on how to fix tis issue?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

驱逐舰岛风号 2024-11-02 10:36:08

您可以使用 ODS HTML,但指定以“.xls”而不是“.htm”结尾的文件名。

Excel 会将 HTML 代码读入行和行中。列。

例如

/* this is really a HTML file, drop it into a text editor to see! */
ods html body = "c:\HTML.xls" ;

proc computab ....

run ;

ods html close ;

You could use ODS HTML, but specify a filename which ends with '.xls' as opposed to '.htm'.

Excel will read the HTML code into rows & columns.

e.g.

/* this is really a HTML file, drop it into a text editor to see! */
ods html body = "c:\HTML.xls" ;

proc computab ....

run ;

ods html close ;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文