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

Hi Everyone,

 

I want to export my data to excel and the name of the excel file end with _mmddyy_hourminute of the date I export.

 

Could any help me please?

 

Thanks,

 

HC

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You need to figure out the exact format that will work for you but the idea is as follows:

 

proc export ....  outfile = " path to file _ %sysfunc(today(), yymmdd8.)_%sysfunc(time(), time8.).xlsx"

The follow helps for testing your formats. I would highly recommend a YYMMDD format for the date then it will at least sort correctly by default which it won't otherwise. 

%let date = %sysfunc(today(), yymmdd8.);
%let now = %sysfunc(time(), time8.);

%put &date _ &now;

View solution in original post

2 REPLIES 2
Reeza
Super User

You need to figure out the exact format that will work for you but the idea is as follows:

 

proc export ....  outfile = " path to file _ %sysfunc(today(), yymmdd8.)_%sysfunc(time(), time8.).xlsx"

The follow helps for testing your formats. I would highly recommend a YYMMDD format for the date then it will at least sort correctly by default which it won't otherwise. 

%let date = %sysfunc(today(), yymmdd8.);
%let now = %sysfunc(time(), time8.);

%put &date _ &now;
hhchenfx
Barite | Level 11
Thanks a lot, Reeza.
HC

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 798 views
  • 0 likes
  • 2 in conversation