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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.