BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I need a table containing two rows as my footer is it possible to get ??
1 REPLY 1
Olivier
Pyrite | Level 9
Hi Anee.
Don't know if it is really what you want, but here are two solutions to have several footer lines at the bottom of a table.
[pre]
ODS PDF FILE="c:\temp\test.pdf" ;
PROC REPORT DATA = sashelp.class NOWD ;
COLUMNS _ALL_ ;
COMPUTE AFTER ;
LINE "1st line of footer" ;
LINE "2nd line of footer" ;
ENDCOMP ;
RUN ;
/* another solution */
PROC TEMPLATE ;
DEFINE TABLE customClass ;
COLUMN name age sex height weight ;
DEFINE FOOTER f ;
START=name ;
END=weight ;
TEXT "1st line of footer (*ESC*)n 2nd line of footer" ;
END ; /* (*ESC)n = carriage return */
END ;
RUN ;
DATA _NULL_ ;
SET sashelp.class ;
FILE PRINT ODS=(TEMPLATE="customClass") ;
PUT _ODS_ ;
RUN ;
ODS PDF CLOSE ;[/pre]

Cheers.
Olivier

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
  • 1 reply
  • 636 views
  • 0 likes
  • 2 in conversation