- VBA 教程
- VBA - 主页
- VBA - 概览
- VBA - Excel 宏
- VBA - Excel 术语
- VBA - 宏注释
- VBA - 消息框
- VBA - 输入框
- VBA - 变量
- VBA - 常量
- VBA - 运算符
- VBA - 判定
- VBA - 循环
- VBA - 字符串
- VBA - 日期和时间
- VBA - 数组
- VBA - 函数
- VBA - 子过程
- VBA - 事件
- VBA - 错误处理
- VBA - Excel 对象
- VBA - 文本文件
- VBA - 编程图表
- VBA - 用户窗体
- 对你有用的 VBA 资源
- VBA - 快速指南
- 对你有用的 VBA 资源
- VBA - 讨论
VBA - 退出 For
在明确某项准则条件下,我们想退出 For 循环时,会用到 Exit For 语句。执行 Exit For 时,控制权会立即跳至 For 循环后的下一个语句。
语法
以下为 VBA 中 Exit For 语句的语法。
Exit For
流程图
示例
以下示例使用了 Exit For。如果计数器的值达到 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
vba_loops.htm
广告