n error resume next '遇到錯誤,跳過繼續(xù)執(zhí)行下一句
Sub t3()
On Error Resume Next
Dim x As Integer
For x = 1 To 10
Cells(x, 3) = Cells(x, 2) * Cells(x, 1)
Next x
End Sub
|
n error resume next '遇到錯誤,跳過繼續(xù)執(zhí)行下一句 Sub t3() |
|
|