通过 OpenXML 将 DataTable 导入 Excel
我有一个像这样的 DataTable
Col1 Col2 Col3 col4 GRPs 2009 69952.4 a GRPs 2010 58949.8 a GRPs 2009 37251.2 b GRPs 2010 35433.9 b GRPs 2009 28039.2 c GRPs 2010 35079.4 c SOC 2009 69952.4 a SOC 2010 58949.8 a SOC 2009 37251.2 b SOC 2010 35433.9 b SOC 2009 28039.2 c SOC 2010 35079.4 c
我需要使用 OpenXML 将此格式“转换”为 excel 文件
A B C D E F G H I 1 2009 2010 2009 2010 2009 2010 2 GRPs 69952.4 58949.8 37251.2 35433.9 28039.2 35079.4 3 SOC 69952.4 58949.8 37251.2 35433.9 28039.2 35079.4
提前致谢
I have a DataTable like this
Col1 Col2 Col3 col4 GRPs 2009 69952.4 a GRPs 2010 58949.8 a GRPs 2009 37251.2 b GRPs 2010 35433.9 b GRPs 2009 28039.2 c GRPs 2010 35079.4 c SOC 2009 69952.4 a SOC 2010 58949.8 a SOC 2009 37251.2 b SOC 2010 35433.9 b SOC 2009 28039.2 c SOC 2010 35079.4 c
And I need a to "transform" it to a excel file using OpenXML with this format
A B C D E F G H I 1 2009 2010 2009 2010 2009 2010 2 GRPs 69952.4 58949.8 37251.2 35433.9 28039.2 35079.4 3 SOC 69952.4 58949.8 37251.2 35433.9 28039.2 35079.4
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它有点像这样(抱歉这不是完整的代码,但它应该有帮助):
It goes a little like this (sorry this isn't the complete code but it should help):