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

Hi,

 

I want to create a out file along with yyyymmddhhmmss.

Could someone help on this ?

 

Example : filename_yyyymmddhhmmss.txt

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

The closest format I know to that is B8601DT, but it includes a T between the date and the time.  You could strip that out.

%let now = %sysfunc(compress(%sysfunc(datetime(),b8601dt.),T));
filename want "/folders/myfolders/mydata_&now..txt";

View solution in original post

3 REPLIES 3
ballardw
Super User

Where is the datetime value supposed to come from?

Tom
Super User Tom
Super User

The closest format I know to that is B8601DT, but it includes a T between the date and the time.  You could strip that out.

%let now = %sysfunc(compress(%sysfunc(datetime(),b8601dt.),T));
filename want "/folders/myfolders/mydata_&now..txt";
biopharma
Quartz | Level 8
Just curious! Why do you need to store files this way? Could become a maintenance headache.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 3 replies
  • 1504 views
  • 1 like
  • 4 in conversation