我想知道是否有一种方法可以定义在使用宏输出数据时发生分页的时间和位置。我知道在各种消耗臭氧层物质的内容中," Startpage = NOW"可以使用,但如果在该标记集内使用宏,那似乎不起作用。所以基本上我想要两个表,并且每个个人ID代码的图表都在一个单独的,下一页包含相同的摘要图表,该个人的图表等等。目前我只能得到每个表格和图表个人页面,这是一个冗长的报告!任何帮助/建议将不胜感激!
/*************************************************************************/
/* Create a macro variable of all the ID codes */
/* */
/*************************************************************************/
proc sql noprint;
select personal_id
into :varlist separated by ' ' /*Each identifier code in the list is sep. by a single space*/
from provider;
quit;
%let cntlist = &sqlobs; /*Store a count of the number of id codes*/
%put &varlist; /*Print the codes to the log to be sure our list is accurate*/
ods tagsets.rtf file="C:\USER\test.doc" style=sasdocprinter;
/* macro for generating the output table*/
%macro output(x);
proc print data=prov_&x;
run;
proc print data=prov_revCD_&x;
run;
/*Print graph to template defined earlier*/
ods graphics on / height=500px width=500px;
proc sgrender data=summary_&x template=corf_graphs;
run;
ods graphics on / reset=all;
%mend;
%macro loopit(mylist);
%let else=;
%let n = %sysfunc(countw(&mylist)); /*let n=number of codes in the list*/
data
%do I=0 %to &n;
%let val = %scan(&mylist,&I); /*Let val= the ith code in the list*/
%end;
/*Run a loop for each oscar code. Each code will enter the
%do j=0 %to &n;
%let val = %scan(&mylist,&j); /*Let val= the jth code in the list*/
/*Run the macro loop to generate the required tables*/
%runtab(&val);
%output(&val);
%end;
run;
%mend;
%loopit(&varlist)
/*Run the macro loop over the list of significant procedure code values*/
ods tagsets.rtf close;
答案 0 :(得分:0)
宏只是源代码生成设备。它们对任何特定技术的有效性没有影响,除非它们(错误)使用可能使得更难以看到如何正确地进行。
在这种情况下,如果您希望每个%output()
的单个迭代的整体位于一个页面上,则只需在startpage now
调用之前添加%output(&val)
。< / p>
%runtab(&val);
ods tagsets.rtf startpage=now;
%output(&val);
%end;
这将在输出之前产生一个起始指令。您可以轻松地将其包含在%output
宏中,如果您在调用之前总是想要一个新页面。
答案 1 :(得分:0)
我在建议的地方插入了startpage = NOW并插入了一个空白页面,在玩完该展示位置并查看代码正在执行此操作后,剪切它最终工作:
ods tagsets.rtf startpage=NOW;
%runtab(&val);
%output(&val);
ods tagsets.rtf startpage=no;
%end;
答案 2 :(得分:0)
除了使用宏之外,您还可以考虑使用pageby
与proc print
一起为您分割页面。