BookmarkSubscribeRSS Feed
Liangck
Calcite | Level 5

Hi there,

     I have a csv file and its generated by others people. the delimiter used is comma. it had a header inside the file and so call a "end of file" statment indicate the EOF.

     Is there any way to check sas will read until EOF only? and how its does if the file not reached read until EOF ?

     Please help

Thank you

2 REPLIES 2
Ksharp
Super User

It would be helpful if you can post the content of this csv file.

Here is an example:

data want(keep=last_obs);
 infile 'c:\test.csv' length=len end=last;
 length _obs $ 200;
 retain _obs;
 last_obs=_obs;
 input _obs $varying200. len;
 if last then do;output;stop;end;
run;

Ksharp

Liangck
Calcite | Level 5

Thanks Ksharp:

i did it in more tedios and bad way to detect there is a End of file statment.

Thanks for your reply.

Liangck

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1134 views
  • 3 likes
  • 2 in conversation