BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
eduardo_pedrosa
Calcite | Level 5
I need to make a condition where if time is <= 09:00 then 1; if time is > 09:00 and < 17:00 then 2 and if > 17:00 then 3.
1 ACCEPTED SOLUTION

Accepted Solutions
HB
Barite | Level 11 HB
Barite | Level 11

I would guess a CASE statement would get it done, but if all you are doing is setting a flag, I would be tempted to do it in the data step (and this is coming from an SQL guy).

 

 

 

data mytimes;
   input id time time.;
datalines;
1105 08:00
1106 08:30
1107 09:10
1108 10:10
1109 12:56
1110 16:59
1111 17:01
1112 23:45
;
run;

* method 1;
data mytime_flags;
	set mytimes;
	mytimeflag= 0;
	if time <= '09:00't then mytimeflag = 1;
	if time > '09:00't and time < '17:00't then mytimeflag = 2;
	if time >= '17:00't then mytimeflag = 3;
run;

*method 2;
proc sql;
	create table mytime_flags2 as 
	select id, time,
	case 
	when time <= '09:00't then 1
	when time > '09:00't and time < '17:00't then 2
	when time >= '17:00't then 3
	end as mytimeflag
	from mytimes;
quit;

 

 

View solution in original post

1 REPLY 1
HB
Barite | Level 11 HB
Barite | Level 11

I would guess a CASE statement would get it done, but if all you are doing is setting a flag, I would be tempted to do it in the data step (and this is coming from an SQL guy).

 

 

 

data mytimes;
   input id time time.;
datalines;
1105 08:00
1106 08:30
1107 09:10
1108 10:10
1109 12:56
1110 16:59
1111 17:01
1112 23:45
;
run;

* method 1;
data mytime_flags;
	set mytimes;
	mytimeflag= 0;
	if time <= '09:00't then mytimeflag = 1;
	if time > '09:00't and time < '17:00't then mytimeflag = 2;
	if time >= '17:00't then mytimeflag = 3;
run;

*method 2;
proc sql;
	create table mytime_flags2 as 
	select id, time,
	case 
	when time <= '09:00't then 1
	when time > '09:00't and time < '17:00't then 2
	when time >= '17:00't then 3
	end as mytimeflag
	from mytimes;
quit;

 

 

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 57044 views
  • 4 likes
  • 2 in conversation