VBA——If 语句



If 语句由 Boolean 表达式和一个或多个语句组成。如果条件为真,则执行 If 条件下的语句。如果条件为假,则执行 If 循环外的语句。

语法

以下是 VBScript 中 If 语句的语法。

If(boolean_expression) Then
   Statement 1
   .....
   .....
   Statement n
End If

流程图

VBScript if statement

示例

出于演示目的,让我们借助一个函数找出 Excel 中两个数中较大的一个。

Private Sub if_demo_Click()
   Dim x As Integer
   Dim y As Integer
    
   x = 234
   y = 32
    
   If x > y Then
      MsgBox "X is Greater than Y"
   End If
End Sub

执行以上代码后,它将产生以下结果。

X is Greater than Y
vba_decisions.htm
广告