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

Hi,

I get string variable like this,  2001-12

I'd like to transfer this variable into date format like yyyymm;

How should I deal with this?

THX!

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data want;
input a $;
date=input(cats(a,'-01'),yymmdd12.);
format date yymmn6.;
cards;
2011-12
2002-1
;
run;

Ksharp

View solution in original post

4 REPLIES 4
Ksharp
Super User
data want;
input a $;
date=input(cats(a,'-01'),yymmdd12.);
format date yymmn6.;
cards;
2011-12
2002-1
;
run;

Ksharp

rpg163
Calcite | Level 5

THX!

Peter_C
Rhodochrosite | Level 12

if your string is not being read with input statements, then use the formula that Ksharp suggests above. However, when you are reading that string with an INPUT statement, immediately it can be converted to the date standard with informat ANYDTDTE.

Borrowing from Ksharp's demo above,

data want;

  input  date anydtdte7. ;

  format date yymmn6.;

list; cards;

2011-12

2002-1

;

run;

rpg163
Calcite | Level 5

THX!

I get it.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 4 replies
  • 3359 views
  • 3 likes
  • 3 in conversation