ods html body=outbox style=normal rs=none;
ods html text="<div align='left'> Dear Team,<BR>
<BR> Kindly refer to the attached report for 500 Apr 2021.
<br>
<br> Thank You!<br><br>
</div>";
I want to make "Apr 2021" as a variable which I created earlier. &Month &Year. How can I call it in the html?
ods html close;
/* Try this */
%let Month = Apr;
%let Year = 2021;
filename outbox "%sysfunc(pathname(work))/test.html";
ods html body=outbox style=normal rs=none;
ods html text="<div align='left'> Dear Team,<BR>
<BR> Kindly refer to the attached report for 500 &Month. &Year..
<br>
<br> Thank You!<br><br>
</div>";
proc print data=sashelp.class(obs=3);
run;
ods html close;
Bart
/* Try this */
%let Month = Apr;
%let Year = 2021;
filename outbox "%sysfunc(pathname(work))/test.html";
ods html body=outbox style=normal rs=none;
ods html text="<div align='left'> Dear Team,<BR>
<BR> Kindly refer to the attached report for 500 &Month. &Year..
<br>
<br> Thank You!<br><br>
</div>";
proc print data=sashelp.class(obs=3);
run;
ods html close;
Bart
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.