Q1. How to Add a new Document Variable in Word VBA?
ActiveDocument.Variables.Add Name:="DocumentType", Value:="Letter"
Q2. How to change the value of Document Variable in Word VBA?
ActiveDocument.Variables("DocumentType").Value = "Letter"
To be continued..........