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

Hello,

 

I have a date in a character field that looks like 2017JAN and I need to convert to 201701 in another field, so it is recognized as a date.  I have tried everything I can think of and researched but can not get the conversion to work.

 

Any assistance will be greatly appreciated.

 

Elliott

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data x;
x='2017JAN';
y=input(cats(substr(x,5),substr(x,1,4)),monyy7.);
format y yymmn6.;
run;
proc print;run;

View solution in original post

3 REPLIES 3
Astounding
PROC Star

In SAS, 201701 is not a date.  The conversion can be made as you requested, but you are not getting a date as the result.  Here is one way to go about it.  It gets your six-digits as a numeric value:

 

newvar = input(oldvar, 4.) * 100 + month(input('01' || substr(oldvar, 5, 3) || substr(oldvar, 1, 4), date9.);

Ksharp
Super User
data x;
x='2017JAN';
y=input(cats(substr(x,5),substr(x,1,4)),monyy7.);
format y yymmn6.;
run;
proc print;run;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1237 views
  • 0 likes
  • 3 in conversation