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

Hi,

I have .csv file with 3 million records to create sas data set.

In this file date values are mention as following: only year and month:

1999MAY

2001JAN

2002FEB

1979DEC

how can I read this YYYYMMM date value to create SAS data set with mmddyyyy format as following:

05-01-1999

01-01-2001

02-01-2002

12-01-1979

Thanks,

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

You will need to read as a string and switch the year and month position.

data want ;

  input cdate $7.;

  date = input(substr(cdate,5,3)||cdate,monyy7.);

  format date mmddyy10.;

  put date ;

cards;

1999MAY

2001JAN

2002FEB

1979DEC

run;

05/01/1999

01/01/2001

02/01/2002

12/01/1979

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

If I understand your question correctly, I think the following describes your data and a possible solution:

data have;

  input date $;

  cards;

1999MAY

2001JAN

2002FEB

1979DEC

;

data want(drop=indate);

  format date mmddyy10.;

  set have (rename=(date=indate));

  date=input(indate||"01",anydtdte19.);

run;

Tom
Super User Tom
Super User

You will need to read as a string and switch the year and month position.

data want ;

  input cdate $7.;

  date = input(substr(cdate,5,3)||cdate,monyy7.);

  format date mmddyy10.;

  put date ;

cards;

1999MAY

2001JAN

2002FEB

1979DEC

run;

05/01/1999

01/01/2001

02/01/2002

12/01/1979

tom16
Calcite | Level 5

Tom / Art,

Thanks for your answer. This solve my problem. program working like charm,,,,,

Thanks Again,

Tom

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1440 views
  • 3 likes
  • 3 in conversation