快捷搜索:

「Microsoft Excel」易語言如何刪除excel的某一行?

 

主要在excel支持庫里操作,怎麼用命令來刪除某一行呢?

聲明:青鳥問答所有作品(圖文、音視頻)均由用戶自行上傳分享,僅供網友學習交流。

如內容如侵犯了您的權益,請聯繫本站進行刪除!

如若轉載,請註明出處:http://www.6dcc.com/b/s1yqaf73dx.html

2 個回答

  1. #1
    丑得吐血哦2013-08-14·TA獲得超過234個贊
    這樣可能就比較麻煩,因為原來也有格式什麼的,能不能直接刪除
    有一個vb的例子,不知道能不能在易語言中實現
    sub test()
    with sheets("sheet1")
    .Rows("1:1").Insert
    .rows("1:1").AutoFilter Field:=1, Criteria1:="NO"
    .Cells.SpecialCells(Type:=xlCellTypeVisible).EntireRow.Delete
    end with
    end sub
  2. #2
    xiaochengkid2013-08-13·TA獲得超過82個贊
    sub test()
    with sheets("sheet1")
    .Rows("1:1").Insert
    .rows("1:1").AutoFilter Field:=1, Criteria1:="NO"
    .Cells.SpecialCells(Type:=xlCellTypeVisible).EntireRow.Delete
    end with
    end sub


    追問我想用易語言,VB不懂啊

其他類似問題