Utomatic update

  • Thread starter Thread starter Karen
  • Start date Start date
K

Karen

I have a 103 page document that each time its used it has sections that need
to be updated to make it relevant to a perticular job. Each section to be
updated the same. How can I set up this document to automatically update
relevant sections with the same data?
 
This is likely to be as useless to to you as your question was void of
useful information to me or anyone else that might want to help you.
However, a starting point might be to run a macro similar to the following:

Sub Document_Open()
Dim oSec As Section
For Each oSec In ActiveDocument.Sections
oSec.Range = "Updated data"
Next oSec
End Sub

Does 103 pages really matter? Could you provide some meaninful details?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top