BookmarkSubscribeRSS Feed
Yondori
Calcite | Level 5


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..

1.png

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

2.png

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

2 REPLIES 2
PGStats
Opal | Level 21

time = timepart(StartTime);

if time >= '06:30:00't and time <= '09:30:00't;

PG

PG
Yondori
Calcite | Level 5

Thanks a bunch~!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 1416 views
  • 1 like
  • 2 in conversation