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

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!
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
  • 355 views
  • 0 likes
  • 2 in conversation