I'm trying the ExcelConverterX now, and hope it can add 2 more features:
1. when converting a excel file to a single html file, the html file will contain tables each of which is responding to a sheet in the excel file. Can you also add sheet name above each table?
e.g.
<html>
<head>...</head>
<body>
<p>sheet 1 name</p>
<table>sheet 1</table>
<p>sheet 2 name</p>
<table>sheet 2</table>
...
</body>
</html>
2. If feature 1 is fine, add links to each table before and after all the tables.
e.g.
<html>
<head>...</head>
<body>
<p>
<a href="#sheet 1 name">sheet 1 name</a> <a href="#sheet 2 name">sheet 2 name</a> <a href="#sheet 3 name">sheet 3 name</a>...</p>
<p><span name="sheet 1 name>sheet 1 name</span></p>
<table>sheet 1</table>
<p><span name="sheet 2 name>sheet 2 name</span></p>
<table>sheet 2</table>
<p><span name="sheet 3 name>sheet 3 name</span></p>
<table>sheet 3</table>
...
</body>
</html>