Hi all,
I am working with data in SAS using SAS passthrough for oracle. The date that is pulled is in the format yyyymmdd (e.g 20181123) and is numeric. However, I cannot manipulate this using SAS functions (such as the INTCK function) because it is not in a valid sas format or numeric format. Can anyone advice me on how to work with this please? e.g assume you want to create DATEDIFFERENCE variable as in the data step below. How could one do this please?
data Required;
date1=20181123;
Datedifference = intck('day',date1,today();
run;
Thanks.
Just a very small change:
data required;
date1=20181123;
datedifference = intck('day',input(put(date1,8.),yymmdd8.),today());
run;
Numeric format for numeric variable date1 in the put() function.
Use the code window - its the {i} above post:
data required; date1=20181123; datedifference = intck('day',input(put(date1,$8.),yymmdd8.),today()); run;
Just a very small change:
data required;
date1=20181123;
datedifference = intck('day',input(put(date1,8.),yymmdd8.),today());
run;
Numeric format for numeric variable date1 in the put() function.
Please mark @RW9's answer as solution, I just added a very small improvement.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and 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.