SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
zimcom
Pyrite | Level 9

Greetings!

I want the date and time displayed as "2018-09-15T14:52:22" in my report and I found the foolowing code in SAS help, but when I tried the output still show up as "1852642342", not "2018-09-15T14:52:22".

 

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=leforinforref&docsetTarge...

 

What do I missed??

 

data one;
mydt='15sep2018 14:52:22'dt;
put mydt e8601dt25.3;
run;

 

Value of mydtResult

1852642342

2018-09-15T14:52:22.000

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
format mydt e8601dt25.3;

PUT statement writes to the LOG. However you need a format statement to display the formatted value in your output dataset. Hope this helps? 

data one;
mydt='15sep2018 14:52:22'dt;
format mydt e8601dt25.3;
run;

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20
format mydt e8601dt25.3;

PUT statement writes to the LOG. However you need a format statement to display the formatted value in your output dataset. Hope this helps? 

data one;
mydt='15sep2018 14:52:22'dt;
format mydt e8601dt25.3;
run;
zimcom
Pyrite | Level 9
Thnak you su much, you have been always so helpful!!!

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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