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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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