Hi Everyone,
Could you please help me to add a row of blank at the end of my file?
Thank you,
HHC
data want;
set have end=eof;
output;
if eof then do;
call missing (of _all_);
output;
end;
run;
Is this a dataset (in which case you'll need to provide some strong reasons for adding a blank row) or a exported dataset or a report?
What have you currently attempted?
data want;
set have end=eof;
output;
if eof then do;
call missing (of _all_);
output;
end;
run;
Am with @ballardw here, there is no reason I can think of to have a blank row in a dataset, it will just mess up procedures on the data, could even affect results. What is the reasoning? If you want categories regardless of prescence, then use a template dataset, i.e. create a dataset with the combinations you need, and then merge that onto a results dataset.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.