BookmarkSubscribeRSS Feed
peka0027
Calcite | Level 5

-importing a file to SAS from excel
-contains a date in format like 17mar2000:00:00:00 imported as character
-want it to be formatted like 200003

tried

newdate=datepart(date1);
put newdate=yymmn7.;

3 REPLIES 3
Linlin
Lapis Lazuli | Level 10

data have;

input dt $ 20.;

cards;

17mar2000:00:00:00

;

data want(drop=dt);

set have;

date=put(input(scan(dt,1,':'),date9.),yymmn7.);

proc print;run;

peka0027
Calcite | Level 5

Sorry I should have been more specific.  I have a column of dates in this format (different dates) and want to reformat the entire column to the new format.

Tom
Super User Tom
Super User

Excel does not understand SAS's syntax of placing a colon between the date and the time.

But SAS does Smiley Happy

data xx;

  input date1 $20.;

  new_date=datepart(input(date1,datetime.));

  format new_date yymmn6.;

  new_char=put(datepart(input(date1,datetime.)),yymmn6.);

  put (date1 new_date new_char) (=);

cards;

17MAR2000:00:01:45

run;

date1=17MAR2000:00:01:45 new_date=200003 new_char=200003

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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