BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
hhchenfx
Rhodochrosite | Level 12

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

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

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;

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

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.

Reeza
Super User

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;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 8598 views
  • 0 likes
  • 3 in conversation