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
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.