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
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.