|
DataTable.ImportSheet(FileName, SheetSource, SheetDest)
FileName String The full path of the Excel table from which you want to import a sheet. It can be a file system or Quality Center path.
SheetSource Variant The name or index of the sheet in the file that you want to import. Index values begin with 1.
SheetDest Variant The name or index of the sheet in the Data Table that you want to replace with the SheetSource. Index values begin with 1.
如果被调用的脚本中含有 外部数据导入的操作(脚本中我用的是localsheet本地表),当其被调用时就会出现了个问题:
用指定本地表名称,如 Login,则被调用时指定名称会变为 Login[Login],而用索引值2,又会将内容都导入到主调脚本的本地表中去
因而,我就有几个问题想请教下大家:
1.被调脚本中是否可以进行 外部数据导入到其本地表的操作?(因为被调用时其本地表是不可编辑的,所以不太确定)
2.如果第一个问题的回答是肯定的,那么想实现导入到本地表应该用什么名称?全局表用参数Global就行,但本地表用什么就不清楚了,我把local,localsheet,dtlocalsheet都试了一遍,好像都不对
[ 本帖最后由 souchy 于 2010-4-28 10:47 编辑 ] |
|