LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (March 2000, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 27 Mar 2000 12:27:28 +0200
Reply-To:     Frank Poppe <Frank.Poppe@PWCONS.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Frank Poppe <Frank.Poppe@PWCONS.COM>
Organization: UUNET-NL (http://www.nl.uu.net)
Subject:      Re: Question on creating HTML w/ V8 ODS

Hi,

It seems to me that you still want tabular output, but don't want to see the table rules. I don't know of a default ODS style that doesn't show table rules. The following is a quick hack.

Proc Template ; DEFINE STYLE Rick ; PARENT = styles.default ; REPLACE Output From Container / cellpadding = 7 /* current default in styles.default */ cellspacing = 0 /* if non-zero the doc-background shows through in the table bg*/ borderwidth = 0 ; end ; run ;

ods listing close ; ods html file = "E:\table.html" style = rick ;

Proc Print Data = sashelp.class; Run ;

ODS HTML close ;

If done carefully you can do a lot more with PROC TEMPLATE, but it isn't easy...

-- Frank Poppe PW Consulting SASŪ Software Expert Center http://www.pwcons.com

Rick Warden <richard.warden@mail.sprint.com> wrote in message news:01BF94E7.7C3FB790.Richard.Warden@mail.sprint.com... > Hello. I am currently using SAS V8/ODS on NT to create some static web > reports. All of the styles available in V8 seem to be tabular and mimic > the look of the reports produced by the DS2HTM Macro that I used to use in > SAS 6.12. What I am interested in doing is getting a look similar to that > generated by the OUT2HTM Macro in SAS 6.12. That is, I don't want a table, > but want a web ready report that resembles the SAS LIST. Anyone know how > to accomplish this in V8? > > Thanks! > > Rick Warden > Sprint IS Performance Measures Group > 5454 West 110th Street - Annex > MS: KSOPKR0201 > (913) 345-6021 > (913) 345-6670 (Fax) > richard.warden@mail.sprint.com


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