Hi I always appreciate this community and thank you for users who gave me generous tips on my SAS problem.
I have a little problem on my SAS coding and I want your generous advice on this problem.
I have a dataset as follows..

And I want to see the data which is recorded BETWEEN 6:30 AM ~ 9:30 AM (Commuting Time).
So I put new variable as 'Time' like this
Data app_total0; set app_total;
time=starttime; format time timeampm.; run;
and now the time variables are shown in the dataset as I expected

But, the problem is that I don't know how to query the data which is recorded between 6:30 am ~ 9:30 am ..
please give me some tips on this problem.
Thanks
time = timepart(StartTime);
if time >= '06:30:00't and time <= '09:30:00't;
PG
Thanks a bunch~!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.