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

Hi,

I have two variables like shown below.

i want to pick 2013 data

TIME_In                            TIME_OUT

28DEC2012:14:58           02JAN2013:10:17---------want this

28JAN2013:14:58           02JAN2013:10:17---------want this

28FEB2013:14:58           02FEB2013:10:17-------want this

12NOV2012:07:38          12NOV2012:07:51-------don't want

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Fugue
Quartz | Level 8

Assuming your data are SAS datetime values . . .

Data want ;

     set have ;

     where year ( datepart ( time_out ) ) = 2013;

run;

View solution in original post

1 REPLY 1
Fugue
Quartz | Level 8

Assuming your data are SAS datetime values . . .

Data want ;

     set have ;

     where year ( datepart ( time_out ) ) = 2013;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1374 views
  • 0 likes
  • 2 in conversation