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
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.