BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jc3992
Pyrite | Level 9
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;
1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Add the firstobs option to your infile statement. i.e.:

	infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF firstobs=2;

Art, CEO, AnalystFinder.com

 

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

Add the firstobs option to your infile statement. i.e.:

	infile '/folders/myfolders/cars93subfree.txt' termstr=CRLF firstobs=2;

Art, CEO, AnalystFinder.com

 

jc3992
Pyrite | Level 9
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!

Reeza
Super User

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;

 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

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.

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