BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vinit_correia
Fluorite | Level 6

i have data in is8601 dt format.

eg:-'2016-09-15T12:40:23'.

i want to calculate number of days from 1960-01-01.

how do i get that

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16
data have;
date1='2016-09-15T12:40:23';
date2='1960-01-01';
run;

data want;
set have;
days=intck('day',input(date2,yymmdd10.),datepart(input(date1,is8601dt.)));
run;
Thanks,
Jag

View solution in original post

4 REPLIES 4
Jagadishkatam
Amethyst | Level 16
data have;
date1='2016-09-15T12:40:23';
date2='1960-01-01';
run;

data want;
set have;
days=intck('day',input(date2,yymmdd10.),datepart(input(date1,is8601dt.)));
run;
Thanks,
Jag
vinit_correia
Fluorite | Level 6

thanks ...that was very helpful

vinit_correia
Fluorite | Level 6

wouold it work if there wasnt a T in Date1?

Jagadishkatam
Amethyst | Level 16
Since we used the informat is8601dt, we are expecting a T in the date1. Else it will not work.
Thanks,
Jag

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 3145 views
  • 2 likes
  • 2 in conversation