将 xml 转换为具有多个工作表的 excel
如果我将下面的 xml 导出到 Excel 2007...我能够正确获取 Excel 工作表。
<Workbook>
<Worksheet >
<MyXml>
<New A="111" B="222" />
</MyXml>
<MyXml>
<New A="111" B="222" />
</MyXml>
</Worksheet>
</Workbook>
但我需要一本包含多个工作表的工作簿...在这种情况下我如何指定 xml?
if I export the below xml to excel 2007...i am able to get the excel sheet correctly.
<Workbook>
<Worksheet >
<MyXml>
<New A="111" B="222" />
</MyXml>
<MyXml>
<New A="111" B="222" />
</MyXml>
</Worksheet>
</Workbook>
But I need a workbook with more than one worksheet...How do i specify the xml in this case ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
如需更多帮助,您可以查看此。
最后,您可以手动创建 Excel 工作簿并将其导出为 XML,以便您可以检查 XML 的格式。
Try this:
For more help you can take a look at this.
Finally, you can manually create an excel workbook and export it to XML so that you can examine the XML's format.