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

Hi,

I wonder how to convert char into date. I have a variable 'DATE' in character format like below

DATE

2020.06

I need to convert this to 2020-06 in date format

I've tried input(t1.DATA,YYMMd.) hopeless what I got is '13JUL1965'

Can you help me with solution?

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26
data want;
    chardate='2020.06';
    numdate=input(compress(chardate,'.'),yymmn6.);
    format numdate yymmd8.;
run;
--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26
data want;
    chardate='2020.06';
    numdate=input(compress(chardate,'.'),yymmn6.);
    format numdate yymmd8.;
run;
--
Paige Miller
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
  • 1 reply
  • 1433 views
  • 2 likes
  • 2 in conversation