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
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.