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
 
  };

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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