gpt4 book ai didi

excel - On Error Goto 0 不重置错误捕获

转载 作者:行者123 更新时间:2023-12-01 23:07:59 27 4
gpt4 key购买 nike

我的印象是On Error GoTo 0重置错误处理。

那么为什么On error resume next似乎没有在下面注册?

Sub GetAction()
Dim WB As Workbook
Set WB = ThisWorkbook

On Error GoTo endbit:
'raise an error
Err.Raise 69
Exit Sub
endbit:
On Error GoTo 0 '<<<reset error handling?

On Error Resume Next
WB.Sheets("x").Columns("D:T").AutoFit
MsgBox "ignored error successfully and resumed next"

End Sub

最佳答案

您需要使用On Error GoTo -1Err.Clear来重置错误捕获。

检查this answer我几个月前发布了更详细的解释。

关于excel - On Error Goto 0 不重置错误捕获,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15542747/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com