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?
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;
Or
eventdat=input(put (eventdat1,z6.),YYMMDD6.);
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.
Ready to level-up your skills? Choose your own adventure.