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
Onyx | Level 15
/* 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
Onyx | Level 15
/* 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!

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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