I have a date (has month day year time) which Proc Contents says is datetime16. I want to convert it to a character string of format mm/dd/yyyy, with slashes and no time.
I'm using SAS 9.4, 64bit, on a Mac through Parallels.
Create a new 10-byte char variable, and PUT the date part of the value using the MMDDYY10. format. The DATEPART function will create the date value that you can format.
data want;
set have; /* data with a datetime var, let's call it dt */
length chardate $ 10;
chardate = put(datepart(dt), mmddyy10.);
run;
But... why? Perhaps just to export to something else for a text-based report? While the value is in SAS, you can format and report/analyze without having to create a new variable.
Create a new 10-byte char variable, and PUT the date part of the value using the MMDDYY10. format. The DATEPART function will create the date value that you can format.
data want;
set have; /* data with a datetime var, let's call it dt */
length chardate $ 10;
chardate = put(datepart(dt), mmddyy10.);
run;
But... why? Perhaps just to export to something else for a text-based report? While the value is in SAS, you can format and report/analyze without having to create a new variable.
If you are ever likely to want to sort on the data, or possibly group by month and year, or year and quarter or similar you might consider adding another date variable with the appropriate default format.
dateonly = datepart(datetimevariable);
format dateonly mmddyy10. ;
Using the dateonly variable for the x-axis of a graph will have values sort in chronologically. If you use a character then you get a sort order like: 01/01/2015, 01/01/2016, 01/02/2015, 01/02/2016 which is not often the desired appearance.
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.