标题:在2016版excel运行清零太慢,请问如何编写
取消只看楼主
刘学斌
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2021-4-7
结帖率:0
已结贴  问题点数:20 回复次数:1 
在2016版excel运行清零太慢,请问如何编写
Sub 删除行()
   
    r = 3
    Do While Cells(r, 3).Value <> ""
         
        If Cells(r, 12).Value <= 0 And Cells(r, 3).Value <> "" Then
           Rows(r).Delete
           r = r - 1
        End If
        r = r + 1
    Loop
    MsgBox ("ok")

End Sub
搜索更多相关主题的帖子: Value 运行 Sub excel 编写 
2021-04-07 11:47
刘学斌
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2021-4-7
得分:0 
回复 2楼 cwa9958
Sub 删除行()
   
    i = ActiveCell.SpecialCells(xlLastCell).Row
    for r=i to 3 setup -1(这一段运行错误)
         
        If Cells(r, 12).Value <= 0 And Cells(r, 3).Value <> "" Then
           Rows(r).Delete
        End If
   Next
    MsgBox ("ok")

End Sub


2021-04-07 15:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-505362-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.153731 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved