BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
anweinbe
Quartz | Level 8

Good afternoon,

 

I have a column within my dataset called "file_accepted". A sample record shows as "09MAR2007:16:12:21". 

 

I am trying to create a field that grabs the 2 digits after the first colon, in this example the 16... which is military time for 4pm. Ideally, I would like my new field to be coded as "1" if the time is at 4PM or after, and "0" if the time is before 4PM. 

 

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

What type of variable, character or numeric? If the variable is a SAS datetime value, numeric with a format of DATETIME18 or similar then you can check the Hour of the value with the hour function:

 

data want;

   set have;

   newvar = (Hour(file_accepted) ge 16);

run;

 

If it isn't a datetime value then you really should make a datetime valued version as most of the steps involving comparisons, selections or other manipulations of datetimes start with that conversion.

View solution in original post

3 REPLIES 3
ballardw
Super User

What type of variable, character or numeric? If the variable is a SAS datetime value, numeric with a format of DATETIME18 or similar then you can check the Hour of the value with the hour function:

 

data want;

   set have;

   newvar = (Hour(file_accepted) ge 16);

run;

 

If it isn't a datetime value then you really should make a datetime valued version as most of the steps involving comparisons, selections or other manipulations of datetimes start with that conversion.

anweinbe
Quartz | Level 8
That did it! Thank you!!!
Reeza
Super User
What's your data type and format on that column?

If it's a datetime you can likely use the HOUR() function.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 597 views
  • 1 like
  • 3 in conversation