EXCEL vba 运行到return就停止了,求大神解答,在线等!谢谢!
如下:Sub错误()DimxAsIntegerForx=1To20OnErrorResumeNextIfx>9ThenOnErrorGoTo100Cells(x,6)=C...
如下:
Sub 错误()
Dim x As Integer
For x = 1 To 20
On Error Resume Next
If x > 9 Then On Error GoTo 100
Cells(x, 6) = Cells(x, 4) * Cells(x, 5)
Next x
Exit Sub
100:
MsgBox "在第" & x & "行出错了"
Cells(x, 6) = "错误"
Return
End Sub
运行到return就错误,删除后,只能运行到第一个出现错误的那行,为什么啊?求大神解决!谢谢! 展开
Sub 错误()
Dim x As Integer
For x = 1 To 20
On Error Resume Next
If x > 9 Then On Error GoTo 100
Cells(x, 6) = Cells(x, 4) * Cells(x, 5)
Next x
Exit Sub
100:
MsgBox "在第" & x & "行出错了"
Cells(x, 6) = "错误"
Return
End Sub
运行到return就错误,删除后,只能运行到第一个出现错误的那行,为什么啊?求大神解决!谢谢! 展开
3个回答
展开全部
Sub ss()
Dim x&
On Error Resume Next
For x = 1 To 20
If x > 9 Then
GoTo 100
End If
Cells(x, 6) = Cells(x, 5) * Cells(x, 4)
200:
Next
Exit Sub
100:
Cells(x, 6) = "错误"
GoTo 200
End Sub
试下这段代码,另外retrun是配合gosub来使用的,
如果使用了on error resume next 那么 return就没啥作用了。
Dim x&
On Error Resume Next
For x = 1 To 20
If x > 9 Then
GoTo 100
End If
Cells(x, 6) = Cells(x, 5) * Cells(x, 4)
200:
Next
Exit Sub
100:
Cells(x, 6) = "错误"
GoTo 200
End Sub
试下这段代码,另外retrun是配合gosub来使用的,
如果使用了on error resume next 那么 return就没啥作用了。
追问
十分感谢~~
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不是return,是resume next
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
vba代码帮调试解决
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询