BookmarkSubscribeRSS Feed
ganeshsas764
Obsidian | Level 7

hi friends,

i have one dout ,

how to import the today file(txt timestap file) from library(different file are there)  to sas software,

6 REPLIES 6
ganeshsas764
Obsidian | Level 7
yes ,

##- Please type your reply above this line. Simple formatting, no
attachments. -##
RW9
Diamond | Level 26 RW9
Diamond | Level 26
data want;
  infile "<directory>\<filename>.txt";
  input ...;
run;
ganeshsas764
Obsidian | Level 7

some X-ayhave different files,but i am impoerting only today file to create create sas dataset

Kurt_Bremser
Super User

Sorry, but I only speak German and English. I can't make any sense of your writing.


@ganeshsas764 wrote:

some X-ayhave different files,but i am impoerting only today file to create create sas dataset


 

ballardw
Super User

Please show the exact name of the file.

If you are trying to use a SAS function to determine a value for TODAY to build the correct file name it is possible but we would need to see what the file name looks like to make useable suggestions.

 

Another optiom though likely more complicated is to use the SAS external file functions to open a directory (DOPEN), search for properties (Doptnum ), identify the property that the operating system uses to specify creation date (Doptname) and find files with the desired date (Dread) and likely a few more steps.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 6 replies
  • 2072 views
  • 0 likes
  • 4 in conversation