How to obtain today's date in YYYY Month (ex. 2022 January) format?
%let today = %sysfunc(today());
%put &today;
Like that:
%let today = %sysfunc(today(),year4.) %sysfunc(today(),monname20.-L);
%put &today;
?
B.
Like that:
%let today = %sysfunc(today(),year4.) %sysfunc(today(),monname20.-L);
%put &today;
?
B.
Or with proc format:
proc format;
picture yearmonth (default=32)
other='%Y %B' (datatype=date);
run;
%let today = %sysfunc(today(),yearmonth.);
%put &today;
Bart
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.