BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
alepage
Barite | Level 11

Hello,

 

I would like to know how to eliminate the above mentioned error message after running the following code:

 

data test;

input name $ age @@;

datalines;

John 13 Monica 12 Sue 15 Stephen 10

Marc 22 Lily 17

;

run;

 

Regards,

Alain

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

It might not be worth the trouble, but here's something you can try. 

 

data want;

infile cards truncover;

input @1  @ ;

nrecs = countw(_infile_) / 2;

do _n_=1 to nrecs;

   input name $ age @ ;

   output;

end;

drop nrecs;

datalines;

John 13 Monica 12 Sue 15 Stephen 10

Marc 22 Lily 17

;

 

View solution in original post

6 REPLIES 6
ChrisHemedinger
Community Manager

What message?  The only message I see is informational:

 

NOTE: SAS went to a new line when INPUT statement reached past the end of a line.
NOTE: The data set WORK.TEST has 6 observations and 2 variables.
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
alepage
Barite | Level 11

Yes you are right.  Then what can i do to eliminate this note:

SAS went to a new line when INPUT statement reached past the end of a line.

 

Reeza
Super User

You can consider the NONOTES option, but it seems like overkill because it suppresses all notes.

The list of options related to the LOG are in the link below.

 

http://documentation.sas.com/?docsetId=lrcon&docsetTarget=n03qoiyzzrrl4in1pfvbqgj7jan8.htm&docsetVer...

Reeza
Super User

Post your code and log, including the ERROR

Astounding
PROC Star

It might not be worth the trouble, but here's something you can try. 

 

data want;

infile cards truncover;

input @1  @ ;

nrecs = countw(_infile_) / 2;

do _n_=1 to nrecs;

   input name $ age @ ;

   output;

end;

drop nrecs;

datalines;

John 13 Monica 12 Sue 15 Stephen 10

Marc 22 Lily 17

;

 

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4792 views
  • 3 likes
  • 5 in conversation