data cars93ff2; infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF; length Manufacturer $10; input Manufacturer $ Type $ Price MPG_city MPG_highway Horsepower Origin $; run; proc print data=cars93ff2; run;
Add the firstobs option to your infile statement. i.e.:
infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF firstobs=2;
Art, CEO, AnalystFinder.com
Add the firstobs option to your infile statement. i.e.:
infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF firstobs=2;
Art, CEO, AnalystFinder.com
data cars93ff2; infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF; length Manufacturer $10; input Manufacturer $ Type $ Price MPG_city MPG_highway Horsepower Origin $; run; proc print data=cars93ff2; run;
I succeeded, thanks! I did add firstobs before, but right after the path, now I changed the place and it worked! Thanks so much!
What does your log show?
@jc3992 wrote:
data cars93ff2; infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF; length Manufacturer $10; input Manufacturer $ Type $ Price MPG_city MPG_highway Horsepower Origin $; run; proc print data=cars93ff2; run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.