VBA教學
VBA Excel宏
VBA概述
Excel VBA術語
VBA宏註釋
VBA消息框
VBA輸入框
VBA變量
VBA常量
VBA運算符
VBA算術運算符
VBA邏輯運算符
VBA連接操作
VBA比較運算符
VBA決策
VBA if語句
VBA if/else語句
VBA if...elseif...else語句
VBA嵌套if語句
VBA switch語句
VBA循環
VBA for循環
VBA for each循環
VBA While Wend循環
VBA do...while循環
VBA do...until循環
VBA退出for循環
VBA 退出Do循環
VBA字符串
VBA Instr函數
VBA Rtrim函數
VBA Trim函數
VBA Len函數
VBA Replace函數
VBA Space函數
VBA strComp函數
VBA string函數
VBA 字符串Reverse函數
VBA Mid函數
VBA Right函數
VBA Left函數
VBA UCase函數
VBA Lcase函數
VBA InString反轉
VBA日期時間函數
VBA CDate函數
VBA Date日期函數
VBA DateAdd函數
VBA DateDiff函數
VBA DatePart函數
VBA DateSerial函數
VBA FormatDateTime函數
VBA IsDate函數
VBA Day函數
VBA Month函數
VBA Year函數
VBA MonthName函數
VBA WeekDay函數
VBA WeekDayName函數
VBA Now函數
VBA Hour函數
VBA Minute函數
VBA Second函數
VBA Time函數
VBA Timer函數
VBA TimeSerial函數
VBA TimeValue函數
VBA數組
VBA LBound函數
VBA UBound函數
VBA Split函數
VBA Join函數
VBA IsArray函數
VBA Erase函數
VBA定義函數
VBA子過程
VBA事件
VBA錯誤處理
VBA Excel對象
VBA文本文件
VBA圖表編程
VBA if...elseif...else語句
if 語句之後有一個或多個elseif 語句,由布爾表達式,接着是默認else語句,其中,當所有的條件爲假時執行 else 語句。
語法 :
if elseif else語法在VBScript Else語句是:
If(boolean_expression) Then Statement 1 ..... ..... Statement n ElseIf (boolean_expression) Then Statement 1 ..... .... Statement n ElseIf (boolean_expression) Then Statement 1 ..... .... Statement n Else Statement 1 ..... .... Statement n End If
示例
爲了演示的目的,找出一個Excel的兩個數字之間最大的值,在函數的幫助下完成。
Private Sub if_demo_Click() Dim x As Integer Dim y As Integer x = 234 y = 234 If x > y Then MsgBox "X is Greater than Y" ElseIf y > x Then Msgbox "Y is Greater than X" Else Msgbox "X and Y are EQUAL" End If End Sub
當執行上面的代碼,它產生了以下結果:
X and Y are EQUAL