Hello Everyone,
I have a dataset of Date as below and I want to export it to csv file with the format
yyyy.mm.dd
(you can ignore the time in the file).
Could you please help me?
Many thanks,
HHC
data have;
input date time;
informat time time11.;
format date date9. time time11.;
datalines;
20130730 4:00:00
20130130 5:15:00
Apply format yymmddp10. And then use PROC EXPORT.
data out;
set have;
format date yymmddp10.;
run;
proc export data = out outfile='myfile.csv' DBMS=csv replace;run;
In order to input into a SAS date, you have to assign a yymmdd8. informat to variable date.
You can then use yymmddp10. as output(display) format when you create the .csv.
Apply format yymmddp10. And then use PROC EXPORT.
data out;
set have;
format date yymmddp10.;
run;
proc export data = out outfile='myfile.csv' DBMS=csv replace;run;
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.