Good afternoon loungers
I need to update all fields in all story type with code
——————————————-
For Each story In ActiveDocument.StoryRanges
For Each fld In ActiveDocument.StoryRanges.Fields
ActiveDocument.StoryRanges.Fields.Update
Next fld
Next story
——————————————
I cant get to each field within each storytype ..
Grrrr
The inner loop like this works fine
For Each fld In ActiveDocument.Fields
ActiveDocument..Fields.Update
Next fld
Thanks in advance
Geof