You need to show how you're using the date and we can then show you how to change the format.
1. Converting a character date to a SAS date: SASDateVariableName=input(yourdatevariable, anydtdte.);
2. Assign the desired format: format ASDateVariableName mmddyyD10.;
Other variants of that format can be found at: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000590662.htm
Art, CEO, AnalystFinder.com
Well, I would never show you have to get a date with a two-digit year. I hope this is close enough:
data want;
length mydate $ 11;
set have;
mydate = put(input(mydate, mmddyy10.), date11.);
run;
That's assuming that 03/03/2017 is actually in MMDDYY form, rather than DDMMYY form.
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!
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.