Excel VBA跳过执行while循环

时间:2016-11-18 06:20:37

标签: excel vba

如何使用continue语句跳过下一次迭代的循环。因此,如果条件失败,则循环必须进行下一次迭代

代码如下:

Do While i<50 
    If IsEmpty(Cells(EndRow, 25)) = False Then
        Continue Do 
    Else 
        Cells(EndRow, 25).Interior.ColorIndex = 37 
    i = i+1 
LOOP

1 个答案:

答案 0 :(得分:1)

也许你在此之后

Do While i < 50
    If IsEmpty(Cells(EndRow, 25)) Then Cells(EndRow, 25).Interior.ColorIndex = 37
    i = i + 1
Loop