求助libxl库,批量删除表格中出现删的不彻底。还有一个怎么copy一个现在的表。

amin 14天前 145

 

import console; 

import godking.libxl

var book = godking.libxl.open("\res\5-1#\1.1、5-1#管内穿线和槽盒  检验批表头.xls")


var sheetName = book.getSheetNames("\res\5-1#\1.1、5-1#管内穿线和槽盒  检验批表头.xls")

num = #sheetName

for(i=1;num;1){

console.log(#sheetName)

book.delSheet(i)

console.log("删除表"+i)


}


var newsheet={"x1","l2","oo3","t4","p5","n6"}

for(i=1;#newsheet;1){

book.addSheet(newsheet[i],0)

    console.log("新增表"+newsheet[i])

     book.addSheet()

}

console.pause(true);

book.save("d:\test.xls")

book.close()

import process

process("d:\test.xls")


上传的附件:
最新回复 (4)
  • 光庆 14天前
    1 2
    删除要从后往前
  • 光庆 14天前
    1 3
    如果从前往后,索引不要变
  • amin 14天前
    0 4
    此楼层已删除
  • amin 14天前
    0 5
    谢谢广庆大佬,在您的帮助下,文中所提的问题已经解决。大赞
返回