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

Greetings Community,

 

I have this text variable that captures the dates

 

03/15/2015

3/17/2016

 

Some with leading zeros (for Jan to Sep), and some without the leading zeros. I need to convert it into a date format.

 

I tried this code:

Correct_date = input(text_date,ddmmyy10.) ;

format Correct_date YYMMDD10.;

 

I received this error:

NOTE: Invalid argument to function INPUT at line 30 column 15.

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Sure thing 🙂

 

data have;
text_date="03/15/2015";output;
text_date="3/17/2016";output;
text_date="05/0/2015";output;
text_date="11/0/2016";output;
run;

data want;
   set have;
   text_date=tranwrd(text_date, '/0/', '/1/');
   Correct_date = input(text_date,mmddyy10.);
   format Correct_date mmddyy10.;
run;

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

You almost have it. You have to use the MMDDYY10. informat and not the DDMMYY10. Like this 

 

data have;
text_date="03/15/2015";output;
text_date="3/17/2016";output;
run;

data want;
   set have;
   Correct_date = input(text_date,mmddyy10.);
   format Correct_date mmddyy10.;
run;

 

altijani
Quartz | Level 8

Thank you for the code. I found where the problem is. I have some dates with month and year, but that have 0 for the day as follows:

 

05/0/2015

11/0/2016

 

The converted dates with your code are missings. I need to convert them to the beginning of the month, if the day is 0 as follows:

05/01/2015

11/01/2016

 

 

Any idea how that can be done?

 

Thanks! 

PeterClemmensen
Tourmaline | Level 20

Sure thing 🙂

 

data have;
text_date="03/15/2015";output;
text_date="3/17/2016";output;
text_date="05/0/2015";output;
text_date="11/0/2016";output;
run;

data want;
   set have;
   text_date=tranwrd(text_date, '/0/', '/1/');
   Correct_date = input(text_date,mmddyy10.);
   format Correct_date mmddyy10.;
run;

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 2274 views
  • 1 like
  • 2 in conversation