BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
PGStats
Opal | Level 21

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;
PG
1 ACCEPTED SOLUTION

Accepted Solutions
BrunoMueller
SAS Super FREQ

Add some more style attribute, like so:

compute after _page_/ 
style={
  just=left
  BORDERBOTTOMCOLOR=white
 
  };

View solution in original post

2 REPLIES 2
BrunoMueller
SAS Super FREQ

Add some more style attribute, like so:

compute after _page_/ 
style={
  just=left
  BORDERBOTTOMCOLOR=white
 
  };
PGStats
Opal | Level 21

Thank you @BrunoMueller!

PG

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1253 views
  • 0 likes
  • 2 in conversation