如何将多个数据集导出到 Excel 工作表
大家好,我想将数据从数据集
导出到excel
表。我的数据集
由2个表
组成,那么我如何在单个Excel工作表中写入多个数据集值
Hi all i would like to export the data from the dataset
to excel
sheet. My dataset
consists of 2 Tables
so how can i write the multiple dataset values in a single excel sheet
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在你必须创建之前
1.using Excel = Microsoft.Office.Interop.Excel;//在标题中,并添加正确的引用
2.Excel.Application excelHandle1=PrepareForExport(Ds); //在调用函数中添加句柄
excelHandle1.Visible = true;
我正在使用这个代码
before u have to create
1.using Excel = Microsoft.Office.Interop.Excel;//in header,and Add correct refference
2.Excel.Application excelHandle1 = PrepareForExport(Ds); //add handle in calling function
excelHandle1.Visible = true;
i am using this code
您可以在每个工作表中写入一个表值,而不是单个 Excel 工作表,
http ://csharp.net-informations.com/excel/csharp-excel-export.htm
增加工作表计数,您可以在单个 Excel 文件中保存多个数据集值。
希望它可以对您有所帮助。
Instead of single Excel Sheet,you can write a Table values in each sheet,
http://csharp.net-informations.com/excel/csharp-excel-export.htm
increment the worksheet count you able to save multiple dataset values in the single excel file.
Hope it may help to you.