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

示例

爲了演示的目的,我們在一個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