怎样在winrun下实现.xls文件的数据导入问题
请各位帮忙~!我想把.xls文件中的一列数据导入到winrun下的一个数组中去???
数组中的数据就是那一列数据.
谢谢!!! 用数据驱动试试看~~ 谁能告诉我怎样使用具体的函数实现数据的导入
返回到具体的数值. ddt_open();应该可以吧 #test1.xls is a table which has a column named "id".
table="d:\\test1.xls";
ddt_close(table);
rc=ddt_open(table);
if(rc!=E_OK)
pause("Error");
ddt_get_row_count(table,row_count);
for(i=1;i<=row_count;i++)
{
val=ddt_val_by_row(table,i,"id");
array=val;
#pause(array);
}
ddt_close(table);
页:
[1]