vba退出for循环 - 极悦
首页 课程 师资 教程 报名

vba退出for循环

  • 2022-09-09 09:56:18
  • 6012次 极悦

当我们要根据特定条件退出For循环时,使用Exit For语句。当执行Exit For时,控件会立即跳转到For循环之后的下一条语句。

句法

以下是VBA中Exit For语句的语法。

Exit For

流程图

例子

以下示例使用Exit For。如果 Counter 的值达到 4,则退出 For 循环,控制跳转到 For 循环之后的下一条语句。

Private Sub Constant_demo_Click()
   Dim a As Integer
   a = 10   
   For i = 0 To a Step 2 'i is the counter variable and it is incremented by 2
      MsgBox ("The value is i is : " & i)
      If i = 4 Then
         i = i * 10 'This is executed only if i=4
         MsgBox ("The value is i is : " & i)
         Exit For 'Exited when i=4
      End If
   Next
End Sub

执行上述代码时,它会在消息框中打印以下输出。

The value is i is : 0
The value is i is : 2
The value is i is : 4
The value is i is : 40 

 

选你想看

你适合学Java吗?4大专业测评方法

代码逻辑 吸收能力 技术学习能力 综合素质

先测评确定适合在学习

在线申请免费测试名额
价值1998元实验班免费学
姓名
手机
提交