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

can i please get help on this,

 

wants to convert below character value to date value 

 

Have 

char_var=2015.09.19 /*sorry but this is character value that i ended up by pulling it out from long string)*/

 

want

date_var=09192015 /*want it as a date*/

 

 

thank you in advance,

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

date_Var=mdy(scan(char_var,2,'.')+0,scan(char_var,3,'.')+0,scan(char_var,1,'.')+0);

format date_Var mmddyy8.;

--
Paige Miller

View solution in original post

5 REPLIES 5
PaigeMiller
Diamond | Level 26

date_Var=mdy(scan(char_var,2,'.')+0,scan(char_var,3,'.')+0,scan(char_var,1,'.')+0);

format date_Var mmddyy8.;

--
Paige Miller
Astounding
PROC Star

While I can't test this at the moment, you should be able to read the character string directly:

 

date_var = input(char_var, yymmdd10.);

 

That will give you the proper date value.  For display purposes, choose the date format that you would like.  To match the result you originally asked for:

 

format date_var mmddyyn8.;

 

Good luck.

woo
Barite | Level 11 woo
Barite | Level 11

 

 

Reeza
Super User
date_want=input(date_have, anydtdte10.);
format date_want date9.;

This works for me. 

woo
Barite | Level 11 woo
Barite | Level 11

Yes Reeza that worked, thanks

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 5 replies
  • 1938 views
  • 1 like
  • 4 in conversation