ods tagsets.excelxp
file='c:\temp\sheetname.xls';
%let override_sheetname=;
proc report data=sashelp.class nowindows missing;
columns age sex name weight height;
define age / order;
compute before age;
title = 'Age is ' || put(age, 2.);
call symput('override_sheetname', title);
endcomp;
break after age / page;
run;
%symdel override_sheetname / nowarn;
ods tagsets.excelxp close;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.