I'm successful in generating a multi-worksheet workbook in Excel using MS xmlns="urn:schemas-microsoft-com:office:spreadsheet and XML. Problem
is if I try to include more than one Table per worksheet, only the first worksheet is generated.
I would think this setup would work:
<Worksheet ss:Name="Sheet 1">
<Table x:FullColumns="1" x:FullRows="1">
....[[CONTENT Table 1]]
</Table>
<Table x:FullColumns="1" x:FullRows="1">
....[[CONTENT Table 2]]
</Table>
</Worksheet>
Each table has its own dataset, Is there some setting or attribute that I need to consider in order to get more than one table per sheet to appear?
Thanks for any help!
P.T.
I would think this setup would work:
<Worksheet ss:Name="Sheet 1">
<Table x:FullColumns="1" x:FullRows="1">
....[[CONTENT Table 1]]
</Table>
<Table x:FullColumns="1" x:FullRows="1">
....[[CONTENT Table 2]]
</Table>
</Worksheet>
Each table has its own dataset, Is there some setting or attribute that I need to consider in order to get more than one table per sheet to appear?
Thanks for any help!
P.T.