E
ernmeg
I have a document that has docproperties in the header and body. I have
a custom button that loads a userform in which these document
properties can be changed. Right now, I have the following code that
updates all the fields on the page:
Dim myStoryRange As Range
For Each myStoryRange In ActiveDocument.StoryRanges
myStoryRange.Fields.Update
Next myStoryRange
This works, however, I'd like to be able to ONLY update the 3 document
properties that have changed. Is there any way to do this?
a custom button that loads a userform in which these document
properties can be changed. Right now, I have the following code that
updates all the fields on the page:
Dim myStoryRange As Range
For Each myStoryRange In ActiveDocument.StoryRanges
myStoryRange.Fields.Update
Next myStoryRange
This works, however, I'd like to be able to ONLY update the 3 document
properties that have changed. Is there any way to do this?