sunbn1409 发表于 2010-9-10 14:44:49

QTP 导出datatable数据到excel

代码运行过程中将数据写到datatable里面,之后通过exportsheet 导出datatable到excel报错:A general error occured while exporting the sheet.

手动导出仍出现同样的问题。怀疑是因为datatable的一个cell里面包含了公式,请问含有公式的datatable不能导出到excel吗?

hanjj 发表于 2010-9-10 15:13:04

你把贴出代码看看.描述的清楚一点.

sunbn1409 发表于 2010-9-10 16:31:41

我的代码 如下:

Dim DirPath:DirPath = "d:\"

DataTable.AddSheet "test"
DataTable.GetSheet("test").AddParameter "test",null
DataTable.GetSheet("test").GetParameter("test").ValueByRow(1) = "=hyperlink("""&DirPath&""")"

DataTable.ExportSheet "d:\test.xls","test"


谢谢回复

sunbn1409 发表于 2010-9-13 09:53:47

自己顶一下,盼指教:)

TIB 发表于 2010-9-13 15:21:56

Excel什么版本?

把数据改成简单点的,例如就一个字母的,再试试看,以便排除公式的问题。试试吧

sunbn1409 发表于 2010-9-13 17:06:22

回复 5# 的帖子

Excel 是2003的,改成一般的数据可以,看来只能用别的方式导出公式了。。。。。
页: [1]
查看完整版本: QTP 导出datatable数据到excel