I would like to know if it is possible to create a single HTML file which (after changing its extension to .xls) when opened with Excel, will parsed to multiple sheets.
Little example :
I've got a file test.xls with the content :
<html>
<body>
<table>
<tr>
<td>
1
</td>
<td>
2
</td>
<td>
3
</td>
<td>
=sum(A1:C1)
</td>
</tr>
</table>
</body>
</html>
When I open this file with Excel I get one Sheet with calculated sum of cells A1 to C1 in A4=6.
I wonder if it is possible to create an HTML file which contains multiple tables which will be parsed as multiple sheets in Excel.
Here is the Excel view of this file :