| Date: | Wed, 13 Aug 2008 02:29:58 -0700 |
| Reply-To: | Patrick <patrick.matter@GMX.CH> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Patrick <patrick.matter@GMX.CH> |
| Organization: | http://groups.google.com |
| Subject: | Re: I need a good sas dataset to html converter |
|
| Content-Type: | text/plain; charset=ISO-8859-1 |
Like Gerhard said: Why not using ods in conjunction with a PROC, eg:
ods htmlcss body='C:\temp\myfile.html' ;
proc print data= sashelp.class noobs;
run;
ods htmlcss close;
HTH
Patrick
|