Hi
I need help in the following:-
1. I need to convert the numberic variable 20171223 to a date 23DEC2017
2. I need to split a numberic variable 20171223 to numeric variables 2017 12 and 23.
Thanks.
Vinay
vinayradhi@gmail.com
#1:
newvar = input(put(oldvar,8.),yymmdd8.);
#2:
day = mod(oldvar,100); month = mod(int(oldvar/100),100); year = int(oldvar/10000);
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.
Browse our catalog!