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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3 replies
  • 928 views
  • 1 like
  • 4 in conversation