本文介绍了Try函数的Excel库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用Try函数,但Excel编译器返回"Sub或Function not defined。"。我认为这意味着我没有加载库。
I'm trying to use the Try function but Excel compiler returns "Sub or Function not defined." I assume that means I don't have the Library loaded.
如果这是正确的,我应该加载什么库或者我应该使用什么Reference语句来获取函数?如果我不对,我该如何尝试工作?
If that's correct, what library should I load or what Reference statement should I use to get the function? If I'm not right, how do I get Try to work?
推荐答案
On Error GoTo line ' -- (*1)
On Error Resume Next
On Error GoTo 0
(* 1)" line"表示行号或标签。
问候,
(*1) "line" means Line number or Label.
Regards,
这篇关于Try函数的Excel库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!