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
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;
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;
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.