When I learn exporting file from SAS, I have some questions about some statements. Like:
ods noproctitle;
options orientation=landscape;
ods excel file=;
when we add those statement at the beginning of the code. We always need add some statements like:
ods proctitle;
options orientation=portrait;
ods excel close; at the end of program. Why we need to add those statements at end of the program? Thanks so much