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;
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.
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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.