位置:首頁 > 高級語言 > VBA教學 > VBA if/else語句

VBA if/else語句

if 語句由一個布爾表達式後跟一個或多個語句。if 條件為真,下麵的 if 條件被執行的語句。if 條件為假,else部分的語句將被執行。

語法:

在 VBScript 中的 if else 語句的語法是:

If(boolean_expression) Then
   Statement 1
	.....
	.....
   Statement n
Else
   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 = 324
    
    If x > y Then
       MsgBox "X is Greater than Y"
	Else
	   Msgbox "Y is Greater than X"
    End If
End Sub

當執行上麵的代碼,它產生了以下結果:

Y is Greater than X