BookmarkSubscribeRSS Feed
Mdormond
Calcite | Level 5

I have a study that has a starting point of 1998. I also have the variable "event date" which consists of a number either +/- the starting point. I would like to convert this number into "year of event" to determine in what year after 1998 the event occurred.  Is there a way to easily code this?

3 REPLIES 3
PGStats
Opal | Level 21

Use SAS date functions, shift the starting point date by event date days and get what year that is :

starting_point = '25OCT1998'd;

year = year(intnx("DAY", starting_point, event_date));

PG

PG
Chrishi
Calcite | Level 5

data want;

set have;

event=event_date+starting_point;

year = year(event);

run;

hope this code will solve your issue.

Sudeer.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Whist the above two answers are completely correct, I am questioning what the question is.  You state you have a starting point of 1998, which is fine.  It is this event date variable which I am not sure on.  Does this reference a time interval from the year or something else.  I.e. does it contain days since 1998, years since then, quarters, or is it something completely adhoc such as category 2 indicates 5 years.

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!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 646 views
  • 0 likes
  • 4 in conversation