BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Azuki707
Calcite | Level 5

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;

1 ACCEPTED SOLUTION

Accepted Solutions
yabwon
Amethyst | Level 16
/* 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

_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



View solution in original post

2 REPLIES 2
yabwon
Amethyst | Level 16
/* 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

_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



Azuki707
Calcite | Level 5
It works! Thanks!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1533 views
  • 1 like
  • 2 in conversation