Topic awaiting preservation: Excel to HTML (Page 1 of 1) |
|
---|---|
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 12-12-2002 16:30
Excel (the spread sheet) offers this great tool which allows you to turn you Excell spread sheet into an HTML page. The problem is that the HTML is god awful. It is bloated an pretty much useless maintaining a nice and easy to use web page that is code readable. I try to be as pure as possible. |
Bipolar (III) Inmate From: Belgium |
posted 12-12-2002 17:09
I just love databinding more and more ! |
Paranoid (IV) Mad Scientist with Finglongers From: Germany |
posted 12-12-2002 18:37
alternative c) export as cvs, parse that with a scripting language of your choice (php for example), let that output html. |
Paranoid (IV) Inmate From: California |
posted 12-12-2002 19:05
I don't know that this would be a better solution but it's certainly an alternative. I used the Spreadsheet::ParseExcel and Spreadsheet::WriteExcel perl modules to write a tool to convert LDIF address books to an Excel file for import to Outlook. I also made a tool to take form input and add it to an Excel file for something similar. If you have several files that need to be converted, it might be worth while to write a XLS->html conversion tool. From working with those modules, it looks like it would fairly easy to write such a tool. |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 12-13-2002 04:24
I am wondering if the solutions you posted are superior to what I am currently doing. |
Nervous Wreck (II) Inmate From: West Bloomfield MI |
posted 12-17-2002 15:28
I just make named regions in the excel sheet and use the File System Object to write the page section and an ODBC connection to the region which it pulls in as a table (ASP). If anyone wants a sample let me know. |