From: Shel on
Hi All,

I am trying to print the footnotes (ten) on page 1. I am using the
following code.
Questions is:
1) I do not want the column names printed on page 1,
2) Is there any better way to present two columns, 10 lines of text on
page 1.

compute before _page_ / style={just=l protectspecialchars=off};
if pageit = 1 then do;
text1 = "xyw xyw cde kkk";
text2 = "xyw xyw cde kkk";
num = 300;
end;
else do;
text1 = "Treatment: "||strip(trtac); text2 = ""; num = 0;
end;
line @1 '\brdrb\brdrs\brdrw15' text1 $300.;
line @1 text2 $VARYING. num;
endcomp;

Appreciate your help.