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
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.