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
Assuming your data are SAS datetime values . . .
Data want ;
set have ;
where year ( datepart ( time_out ) ) = 2013;
run;
View solution in original post
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.