Hi
I have a MSWord documents that contains merge fields and it works fine. But if the documents are put as links in another document (being opened from another document), a textarea/field containing merge fields gives an error because they are not updated.
If I markup the mergefields in the textbox and click on update fields, they get updated with the right data.
I then tried to update the fields with a makro that contains the code:
'
For Each l_section In ActiveDocument.Sections
l_section.Range.Fields.Update
Next l_section
'
when I run the makro, it seems as if something is happening, and the textbox blinks slightly but the fields does not update.
Does anyone know how I can update these fields?
Thanks
I have a MSWord documents that contains merge fields and it works fine. But if the documents are put as links in another document (being opened from another document), a textarea/field containing merge fields gives an error because they are not updated.
If I markup the mergefields in the textbox and click on update fields, they get updated with the right data.
I then tried to update the fields with a makro that contains the code:
'
For Each l_section In ActiveDocument.Sections
l_section.Range.Fields.Update
Next l_section
'
when I run the makro, it seems as if something is happening, and the textbox blinks slightly but the fields does not update.
Does anyone know how I can update these fields?
Thanks