Hi SaneMan,
If you run the following code, you'll see which variables do/don't exist. It's a bit hard to populate those that don't ...
Code:
Sub Test()
Dim i
With ActiveDocument
For i = 1 To .Variables.Count
MsgBox .Variables(i).Name & vbCr & .Variables(i).Value
Next
End With
End Sub