|
不能直接用A当作列的名称。 双击A列,改个名字,然后在程序中引用时用双引号引起来。
datatable(a,"Global") = b 修改成
datatable("YourColumnName","Global") = b
可以用编号,从1开始
datatable(1,"Global") = b
可以用内置变量
dtLocalSheet, or dtGlobalSheet.
datatable(1,dtGlobalSheet)
这个方法是获取和设置一个runtime的值,程序运行结束你在表格里面是看不到你设定的值的,只能在程序运行时看到,想要看到你是否成功设定或者读取,在当前步骤加一个wait(n),
ParameterID Variant Identifies the parameter (column) of the value to be set/retrieved. Index values begin with 1.
SheetID Variant Optional. Identifies the sheet to be returned. The SheetID can be the sheet name, index or dtLocalSheet, or dtGlobalSheet.
If no Sheet is specified, the first sheet in the run-time Data Table is used (global sheet). Index values begin with 1.
NewValue String Sets the value for the specified table cell. |
|