如何使用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
答案 0 :(得分:1)
也许你在此之后
Do While i < 50
If IsEmpty(Cells(EndRow, 25)) Then Cells(EndRow, 25).Interior.ColorIndex = 37
i = i + 1
Loop