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


hi guys,

Can anyone please tell me what i am doing wrong  here

data test;

date='02oct2014'd;

format date datetime18.;

run;

the date in the output is 1/1/1960 5:33:18 AM

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

You are trying to write a date (number of days) using a datetime format. So it is interpreting the number of days as the number of seconds.

View solution in original post

6 REPLIES 6
Tom
Super User Tom
Super User

You are trying to write a date (number of days) using a datetime format. So it is interpreting the number of days as the number of seconds.

stat_sas
Ammonite | Level 13

In order to get it in datetime format, try something like this

data test;

date='02oct2014'd;

new_date=date*86400;

format date date9. new_date datetime18.;

run;

Tal
Pyrite | Level 9 Tal
Pyrite | Level 9

thank you both

so i actually used new_date=dhms(date,00,00,00) and  then applied the format datetime.

Tom
Super User Tom
Super User

You could also just write a datetime literal instead of a date literal.

datetime='02oct2014:00:00'dt;

Tal
Pyrite | Level 9 Tal
Pyrite | Level 9

I know but the thing is this date variable is actually a macro var from another SAS code which resolves to 02oct2014 so I had to use the "&date"d in the dhms function

SASKiwi
PROC Star

Using Tom's method you could specify "&date.:00:00:00"dt to resolve your SAS date as a datetime.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 6 replies
  • 1914 views
  • 5 likes
  • 4 in conversation