All,
Can someone tell me what I am doing wrong in the following data step. I get 'Jan' where I would expect 'Mar'
Data T;
Month = 3;
Month_Str = put(Month,monname3.); ;
Run;
Best
Uday
try this month = today();
see if that helps demonstrate that the value of 3 you have assigned to month is referencing Jan 3, 1960
Data T;
Month = today();
Month_Str = put(Month,monname3.); ;
Run;
the first argument is the SAS date value. the second argument is the format
try this month = today();
see if that helps demonstrate that the value of 3 you have assigned to month is referencing Jan 3, 1960
Data T;
Month = today();
Month_Str = put(Month,monname3.); ;
Run;
the first argument is the SAS date value. the second argument is the format
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.