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

Hi All,

 

I am very new to SAS and try to learn the syntax. Sorry for my very basic question. I have below syntax and I think it's time addition but not certain.

 

((input(compress(substr(add_datetime,1,10),'-'),yymmdd8.))*86400)
+

(input(substr(add_datetime,12,8),TIME8.)) as add_datetime,

 

If I understand it correctly, it takes 10 characters from first position on the left of add_datetime, remove the dashes with compress function, convert to yymmdd8 format, convert to numeric/number of days with input function, then convert to seconds.

 

Plus/Concatenate

 

Second syntax is similar to above but extract time from add_datetime, convert to time8 format.

 

This is time addition syntax, correct?

 

Thank you for your answer.

 

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Your logic is indeed correct, but whether it will produce what you want will be dependent upon how the date variable was actually entered. Here's an example using your code and a slightly different date format based on today's datetime:

 

data test;
  format want datetime21.;
  add_datetime=catt(put(today(),mmddyyd10.),':',put(time(),time8.));
  want=((input(compress(substr(add_datetime,1,10),'-'),mmddyy8.))*86400) 
  +
  (input(substr(add_datetime,12,8),TIME8.));
run;

Art, CEO, AnalystFinder.com

 

View solution in original post

2 REPLIES 2
collinelliot
Barite | Level 11

My guess is you're making this way too complicated. Can you give an example of what add_datetime looks like?

art297
Opal | Level 21

Your logic is indeed correct, but whether it will produce what you want will be dependent upon how the date variable was actually entered. Here's an example using your code and a slightly different date format based on today's datetime:

 

data test;
  format want datetime21.;
  add_datetime=catt(put(today(),mmddyyd10.),':',put(time(),time8.));
  want=((input(compress(substr(add_datetime,1,10),'-'),mmddyy8.))*86400) 
  +
  (input(substr(add_datetime,12,8),TIME8.));
run;

Art, CEO, AnalystFinder.com

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1144 views
  • 0 likes
  • 3 in conversation