Try:
Sub ScratchMacro()
Dim oProp As DocumentProperties
Set oProp = ActiveDocument.CustomDocumentProperties
With oProp
.Item("Approved Date").Value = "Draft"
.Item("Effective Date").Value = "Draft"
End With
ActiveDocument.Fields.Update
End Sub
> Hi,
> I'm looking for a macro that will allow me to change 2 custom properties.
[quoted text clipped - 5 lines]
> Thanks,
> Mickey
Mickey - 20 Oct 2006 19:30 GMT
Thank you so much. Works beautifully.
> Try:
> Sub ScratchMacro()
[quoted text clipped - 16 lines]
> > Thanks,
> > Mickey