BookmarkSubscribeRSS Feed
RYPD_User
Calcite | Level 5

My code has the following:

 

FILENAME MailBox2 EMAIL "&email_delivery_address" SUBJECT="Email For &SYSDATE9" content_type="text/html";

 

The output for the email subject line is for the current day.  How do I have the date be for the previous day?  (yesterday)

1 REPLY 1
PaigeMiller
Diamond | Level 26
%let yesterday = %eval(%sysfunc(today())-1);
filename MailBox2 email "&email_delivery_address" 
    subject="Email For %sysfunc(putn(&yesterday),date7.)" 
    content_type="text/html";

 

--
Paige Miller

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1 reply
  • 546 views
  • 1 like
  • 2 in conversation