我正在尝试限制ODS输出表中包含的观察数量。 我的尝试非常基本:
OPTIONS NODATE number pageno=1 rightmargin=0.25in leftmargin=0.25in topmargin=0.4in bottommargin=0.4in;
options sysprintfont=("SAS Monospace" normal regular 8 ALL) orientation=landscape;
ODS LISTING CLOSE;
ODS NORESULTS;
ods TAGSETS.EXCELXP PATH="C:\TEMP" FILE= "&Place._RequiredFlaggedRecords.XML" STYLE=NORMALPRINTER;
/*Sets number of observations allowed per ODS*/
%let obs=100;
ODS TAGSETS.EXCELXP OPTIONS (EMBEDDED_TITLES='YES' EMBEDDED_FOOTNOTES='YES' SHEET_NAME='Outdated');
proc print data=&Place (obs=&obs) (rename = (CREATE_DATE = DATE_PROCESSED EARLIEST_DATE_TIME=VISIT_DATE_TIME EARLIEST_DATE=VISIT_DATE)) noobs;
var
DATEDIFF
DATE_PROCESSED
VISIT_DATE
VISIT_DATE_TIME
;
WHERE DATEDIFF >=60 ;
title1 j=l "Outdated Records " ;
title2 j=l 'This page reflects the records which were received more than 60 days following';
RUN;
日志文件返回:
NOTE: Line generated by the macro variable "OBS".
1 100
---
22
76
ERROR 22-322: Expecting a quoted string.
ERROR 76-322: Syntax error, statement will be ignored.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE PRINT used (Total process time):
real time 0.09 seconds
cpu time 0.01 seconds
尝试使用%eval
制作100个数字而非字符。也用100代替& obs而不是使用宏。两者都有与上述相同的结果。
任何帮助将不胜感激!
答案 0 :(得分:2)
很可能你的问题是你有第二套parens。这很好用:
ods html file="c:\temp\blah.html" path="";
proc print data=sashelp.class(obs=10 rename=name=namer);
run;
ods html close;
您的错误与不将obs=10
放入重命名的parens中是一致的。如果你像上面那样(两组parens)会出现不同的错误。将所有数据集选项放在一组parens中。
为了清楚起见,这不是与消耗臭氧层物质有关的选择。这是一个数据集选项,仅此而已。宏观变量不具备"类型"因此%eval
与此无关。