首页 > 其他 > 详细

SAS ESCAPECHAR /SAS REPORT

时间:2020-07-25 11:57:36      阅读:111      评论:0      收藏:0      [点我收藏+]

 

 

 

/*先定义个三线表*/
proc template;
    define style work.threeline;
        parent=styles.rtf;
        class table/ frame=hsides rules=group borderspacing=0pt;
    end;
run;

option orientation=landscape ps=30 ls=80 nodate nonumber nobyline;
ods path work.templat(update) sashelp.tmplmst(read);
ods escapechar=~;  /*  遇到~就转译*/

ods _all_ close;

ods rtf file=‘.\file.rtf‘ style=work.threeline;

title1 color=lightbule ‘~{thispage} of ~{lastpage}‘;  /* 用法一:~显示页码*/

title2 ~S={color=red fontsize=20pt} page ~S={foreground=blue} ~{pageof} ; /*~S调用样式*/

title4 color=lightblue {\field{\fldinst{page}}};  /*VBA控制页码*/

title5 ~{style [color=purple fontsize=10pt ] ~{unicode 263B}   ~{super A} ~{sub B}}; /*多层嵌套用法*/

title6 ~S={preimage="1.png"};/*插入图片*/

data sample;
    set sashelp.class;
    if _n_<10;
run;

proc report data=a nowd headline headskip;
    columns name (~{style [background=blue fontsize=15pt ] ~{unicode 263B} Sex-Age} sex age) (~S={fontsize=15pt background=lightblue} weight) height 
    ;
    define name/
            style(header)={just=r cellwidth=120pt font_face=Arial font_weight=bold background=red}
            style(column)={just=c font_face=Arial font_size=10pt background=blue};
    define sex/group;
run;

ods rtf close;
ods listing;        

最丑效果图,主要看各种命令效果.....

技术分享图片

SAS ESCAPECHAR /SAS REPORT

原文:https://www.cnblogs.com/Python-T/p/13375789.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!