Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the value of a document variable. Read/write String.
Syntax
expression.Value
expression Required. A variable that represents a Variable object.
Example
This example adds a document variable to the active document and then displays the value of the new variable.
ActiveDocument.Variables.Add Name:="Temp2", Value:="10"
MsgBox ActiveDocument.Variables("Temp2").Value
Caution
The value of a Variable object cannot be set to a zero-length string. Setting a Variable object to a zero-length string results in a run-time error.
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.