0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SAS: Draw the lines for titles and header.

Posted at

The following program shows the options for the borderline around the header title and column header.


dm "clear log" ;
dm "clear output" ;

proc datasets lib = work kill nolist;
quit;

proc template;
    define style styles.custom;
	parent = styles.rtf;
	replace table from output /
	frame = below
	rules = rows
	cellpadding = 3pt
	cellspacing = 0pt
	borderwidth = 1pt;
    end;
run;

/*Output all setting for the style*/
proc template;
  source styles.custom;
run;

data work.class ;
   set sashelp.class ;
run;

ods _all_ close ;

ods results off ;

ods verify off ;

ods escapechar = "^" ;

title1 j = L "First Line of the Title" ;

title2 j = l "Page ^{thispage}  of ^{lastpage}" ;

ods noptitle ;

ods proclabel "test";

options orientation = portrait nodate nonumber ;

ods rtf file = ".\class.rtf" style = custom nocontents;

/*proc print data = work.class ;*/
/*run;*/

proc report data = work.class nowd;
    column ("title pre" ("title1 ^n title2" name sex age weight height)) ;
	define name/display ;
	define sex/display ;
    define age/display ;
	define weight/display ;
	define height/display ;
run;

ods rtf close ;

ods results on ;

ods listing ;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?