I'm trying to get my listing output to display results from the same procedure on the same page. While it works for all of my procedures, my listing output for some reason begins with all of my footnotes on separate pages and then numerous blank pages before eventually displaying my content about halfway down the document. The first part of my code, which I assume to be the most relevant to this issue, is the following: libname Lab1 "C:\Users\Cam\Documents\Lab1"; options pagesize = 20 topmargin = .5 bottom margin = .5 leftmargin = .5 rightmargin = .5; PROC CONTENTS data = Lab1._all_; title "Exercise 1"; footnote; run; However I see no reason in here for the listing to begin with blanks and footnotes. Any reason why this is?
... View more