I know that we can send regular html files through tubes and open the browser as Excel documents (you do this by changing the HTTP headers and file name, and then succeed in the conversion). BUT, is it possible to get an HTML document in Excel with two worksheets / tabs?
Here is what I thought might work, but didn't quite do its job:
<html>
<body>
<table>
....
</table>
<hr class='pageBreak' /> <= I thought perhaps this would divide stuff up
<table>
....
</table>
<body>
</html>
Is there a worksheet tab or some namespace that I could add in html to create multiple worksheets?
EDIT Just curious if anyone has any ideas ...: - /
(I use Ruby, so if you know a library that will convert HTML tags to some Excel worksheet object, this may work)