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

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand in the Innovate Hub.

Watch Now →
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
  • 959 views
  • 1 like
  • 2 in conversation