LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (August 2011, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sun, 21 Aug 2011 00:44:21 +0800
Reply-To:   sas_l_user <sas_l_user@126.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   sas_l_user <sas_l_user@126.COM>
Subject:   split does not work with ods tagsets.rtf
Content-Type:   text/plain; charset=GBK

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.


Back to: Top of message | Previous page | Main SAS-L page