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

 

data numrecords;

infile "file specification";

input @1 patient $ 15. relative$ 16-26@;

if relative="children" then

          input @54 diagnosis $ 15. @;

elseif relative="Parents" then

          input @28 doctor $15. clinic$ 44-53 @54 diagnosis $15.@;

input age;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Well, I haven't tested, but my guess would be one.  The reason is the first input reads some data, then an if statement switches wether the next or the third input is run.  But at no point does the line pointer go to the next row as each of the input statements ends in the @ symbol which means the line pointer is held over.  So again, just guessing here as can't test, I would imainge only one record is read in (depending on data!) each iteration of dataset.

View solution in original post

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Well, I haven't tested, but my guess would be one.  The reason is the first input reads some data, then an if statement switches wether the next or the third input is run.  But at no point does the line pointer go to the next row as each of the input statements ends in the @ symbol which means the line pointer is held over.  So again, just guessing here as can't test, I would imainge only one record is read in (depending on data!) each iteration of dataset.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1 reply
  • 1314 views
  • 4 likes
  • 2 in conversation