Hi everyone,
****UPDATE: Would you know how to replace the ":" delimiters in the created_at variable whose values are in the ddmmmyyyy:hh:mm:ss format with an underscore? ****************
I have a program which outputs multiple excel files and two emails where the file name has the date (date_pulled). I need to revise the file names to provide the timestamp as well.
Is there a common SAS format, variable which is used for producing timestamps I can use instead? Or would you suggest revising the date_pulled values so it takes out the ":" delimiters from the created_at variable instead of using datepart on the created_at variable?
The filenames ar:
<file path>\Liaison QC Report &date_pulled..xml
Thanks for the suggestions in advance!
--
CURRENT CODE:
%macro file_attribs(filename);
%local rc fid fidc;
%global created_at;
%let rc=%sysfunc(filename(onefile,&filename));
%let fid=%sysfunc(fopen(&onefile));
%let created_at=%sysfunc(finfo(&fid,Create Time));
%let fidc=%sysfunc(fclose(&fid));
%let rc=%sysfunc(filename(onefile));
%mend file_attribs;
%file_attribs(&path.\&infile..csv);
%put &created_at.;
%let date_pulled = %sysfunc(datepart("&created_at."dt),yymmddn8.);
%put &date_pulled.;
Thanks, Reeza! I d used compress and another sysfunc -- this looks great
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.