BookmarkSubscribeRSS Feed
Codepro
Fluorite | Level 6

Dear users,

 

Can anyone help me in substituting previous month date values to the outputi filename?

 

Ex..if Apr 09 2019 current system date then my output filename should be as ...

 

filename_Mar2019.txt

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

You can create the file name like these. What do you want to do from there?

 

data _null_;
  fn=cats('YOURPATHHERE\filename_', put(intnx('month', today(), -1, 'b'), monyy7.), '.txt');
  put fn=;
run;
Codepro
Fluorite | Level 6
Whenever i submit the job the job should create filename with previous
month date and have to post that file to another sft server

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 431 views
  • 0 likes
  • 2 in conversation