if 條件1 then
符合條件,執行結果
elseif 條件2 then
符合條件2,執行結果
else
不符合條件1與不符合條件2,執行結果
end if
if 條件 then exit sub作者: c_c_lai 時間: 2012-7-27 15:10
本帖最後由 c_c_lai 於 2012-7-27 15:24 編輯
回復 3#tku0216
第7行、與第 8行是兩個不同體的敘述。除非是你將 If 敘述寫成:
If a Is Nothing Or b Is Nothing Then
MsgBox "無此題號"
Exit Sub
End If
另外我為了自我測試, 稍加修改了 i%, j% 的宣告方式:
' Dim i%, j%, a As Range, b As Range, ar(), ar1()
Dim i, j, a As Range, b As Range, ar(), ar1()