|
Dear All,
I don't know why split does not work with the header for ods tagsets.rtf, but it works well with ods rtf. Could anyone please tell me how to split with ods tagsets.rtf? Please see code below.
options orientation = portrait nodate nocenter nonumber;
ods escapechar = '^';
ods tagsets.rtf file = 'test4.rtf' style = minimal ;
proc report data = sashelp.class nowd split = '|'
style (report) = [rules = groups cellspacing = 0 frame = hsides]
style(header) = [font_face = 'arial' font_weight = bold]
;
column sex name age weight height;
define sex /order order = internal style(column) = [font_face = 'times' font_weight = bold] ;
define name / "student|name" display style(column)={cellwidth=18% just=d /*asis=on*/};
define age /display;
define weight /display;
define height /display;
run;
ods tagsets.rtf close;
Thanks a lot in advance.
Thanks,
Greg.
|