BookmarkSubscribeRSS Feed
art297
Opal | Level 21

Your subject line is so long that the forum won't let one reply to it.

When you imported the file did you set the usedate=yes statement?

2 REPLIES 2
art297
Opal | Level 21

Of course, you could always just modify the data you already have. e.g.:

data have;

  format want mmddyyN8.;

  date=801014;

  want=mdy(substr(put(date,6.),3,2),

           substr(put(date,6.),5,2),

           substr(put(date,6.),1,2));

run;

ballardw
Super User


Or

eventdat=input(put (eventdat1,z6.),YYMMDD6.);

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2 replies
  • 1038 views
  • 0 likes
  • 2 in conversation