Excel宏期望函数或变量

时间:2018-10-25 23:54:54

标签: excel vba excel-vba

我正在遵循此脚本

https://www.extendoffice.com/documents/excel/3921-excel-save-and-close-workbook-after-inactivity.html

看起来简单而直接。

但是当我打开excel文件时出现这些错误

---------------------------
Microsoft Visual Basic for Applications
---------------------------
Compile error:

Expected Function or variable
---------------------------
OK   Help   
---------------------------

我不确定我做错了什么

但是一切对我来说都很好

enter image description here

有什么解决办法吗?

感谢K Daves

您知道为什么我在End Sub和Next Error Resume Next上会出错吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

他们的网站上存在HTML编码错误。

在子TimeSetting()中,它应如下所示:

Sub TimeSetting()
    CloseTime = Now + TimeValue("00:00:15")
    On Error Resume Next
    Application.OnTime EarliestTime:=CloseTime, _
      Procedure:="SavedAndClose", Schedule:=True
End Sub

您代码中的<span style="background-color:#ff0">部分实际上是为了在其网站上设计Sub样式,而不是成为代码的一部分。