我有一个数据集,其中变量的值如下所示 诊断780.7 804.7 101.7 通过ods和proc报告我希望这个值作为表格的标题,如下所示:
诊断 * 780.7 * 804.7 * 101.7
任何人都可以告诉我如何通过ods将变量值作为excel表中的标题。
答案 0 :(得分:0)
这取决于您的数据的样子。让我们将您的特殊值称为value
,并假设它是字符格式。该特殊值位于变量列中,我们称之为Var1
。
你把if语句放在下面,
data _null_;
set yourdata;
if Var1 = "value" then /* if "Var1" is equal to "value" then */
call symput ('value1',Var1); /* create a Macro variable with call symput*/
run; /* Now you can use this &value1 anywhere in your code */
ods listing close;
ods tagsets.excelxp file="&path\yourfile.xls" style=statistical
options(sheet_name='&value1.*'); /* If you want to add a character into the sheet name,
then you can write &value.* as there is a dot between them */
;
proc print data=yourdata; run;
ods tagsets.excelxp close;
ods listing;