The following example creates two tables with table annotation right where I want it (see attached pdf). How do I get rid of the line below the footnote.
proc sort data=sashelp.class out=class; by sex weight; run;
options nodate nonumber orientation=portrait;
ods pdf file="&sasforum.\Reports\note test.pdf" style=Journal;
title "Testing table annotation";
footnote;
proc report data=class;
by sex;
column name sex age weight;
define Name / display "Student Name";
define sex / display "Sex" format=$1.;
define age / display "Age" format=2.0;
define weight / display "Weight*" format=5.1;
compute after _page_/ style={just=left};
line "* Table is sorted by Student Weight";
endcomp;
run;
ods pdf close;
Add some more style attribute, like so:
compute after _page_/
style={
just=left
BORDERBOTTOMCOLOR=white
};
Add some more style attribute, like so:
compute after _page_/
style={
just=left
BORDERBOTTOMCOLOR=white
};
Thank you @BrunoMueller!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.