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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 8478 views
  • 0 likes
  • 3 in conversation