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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1162 views
  • 0 likes
  • 2 in conversation