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
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 save with the early bird rate—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.