Try:
Code:
Sub SetProperties()
'
' Set key document properties
'
Dim Rng As Range
With ActiveDocument
.BuiltInDocumentProperties("category") = "Generic Template"
Set Rng = .Tables(1).Cell(2, 2).Range
Rng.End = Rng.End - 1
.BuiltInDocumentProperties("title") = Rng.Text
Set Rng = .Tables(1).Cell(4, 2).Range
Rng.End = Rng.End - 1
.BuiltInDocumentProperties("subject") = Rng.Text
Set Rng = .Tables(1).Cell(9, 2).Range
Rng.End = Rng.End - 1
.BuiltInDocumentProperties("author") = Rng.Text
Set Rng = .Tables(1).Cell(10, 2).Range
Rng.End = Rng.End - 1
.BuiltInDocumentProperties("manager") = Rng.Text
.Save
End With
End Sub