BookmarkSubscribeRSS Feed
PriyaL
Fluorite | Level 6

Hi,

 

I am trying to find a way to convert a date into a like for like character string to I can merge in data using the date as a variable.

For example

 

ReferenceDatedate2
89374631MAR2002:00:00:00.000Mar-02

 

Where date2 is the datepart(date) formatted using monyy5.

I would like to make a variable date3 that is a character replica of date2 as I don't want to deal with days in the merge.

 

Does anyone know an easy way to do this?

Thanks.

3 REPLIES 3
Astounding
PROC Star

A reasonable way:

 

length date3 $ 3;

date3 = put(date2, monyy5.);

 

Because of the LENGTH statement, there is only room to store the first 3 characters.

PriyaL
Fluorite | Level 6
The first 3 characters will only display the month whereas I need the month and year.
Astounding
PROC Star

OK, then give DATE3 a length of $5 instead of $3.

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!

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
  • 8127 views
  • 0 likes
  • 2 in conversation