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

Hi Everyone,

 

Can some one help me with extracting DAY, MONTH, YEAR and Time from the below format....

 

2015-08-27T 8:36:00

2014-09-30T14:45:00

 

The output should look like this…

       STDTC                           ST_Y ST_M ST_D ST_TM

2015-08-27T 8:36:00       2015   8   27   08:36

2014-09-30T14:45:00      2014  9    30   14:45

 

Thanks in advance

 

Rakesh

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

1. Datepart() function to extract date

2. Timepart() function to extract time

3. Year(), Month(), Day() function to extract date components - reference variable from #1

View solution in original post

2 REPLIES 2
Reeza
Super User

1. Datepart() function to extract date

2. Timepart() function to extract time

3. Year(), Month(), Day() function to extract date components - reference variable from #1

DartRodrigo
Lapis Lazuli | Level 10

Hi mate,

 

Try this. Not the best option but works:

 

data dt;
  date="2015-08-27T 8:36:00 ";
run;

data dt2;
   set dt;
   ST_Y  = input(scan(date,1,"-"),Year.);
   ST_M  = input(scan(date,2,"-"),month.);
   ST_D  = input(scan(scan(date,1,"T"),3,"-"),day.);
   ST_TM = input(scan(date,2,"T"),nltime10.);
   format ST_TM nltime10.;
run;

Hope this helps

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 71465 views
  • 5 likes
  • 3 in conversation