Skip to content

DocumentProperties

Store Custom Settings at document level

Sub test()
Dim test As String
test = ThisWorkbook.CustomDocumentProperties("TestMe")
Debug.Print test
ThisWorkbook.CustomDocumentProperties("TestMe") = "Updated Path"
Debug.Print test
End Sub