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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 1012 views
  • 0 likes
  • 2 in conversation