标签: excel vba
我需要保存变量的值以备将来使用。 为此,我参考了Microsoft的VBA参考。 该页面告诉我可以将变量的值保存在Document的Variable对象中。 但是,即使将website中的确切代码粘贴到我的VBA中,它也会引发错误
运行时错误424需要对象
我要执行的确切代码是
Sub AddDocumentVariable() ActiveDocument.Variables.Add Name:="Age", Value:=12 End Sub