I've VBA code in Excel that edits and modifies Word files.
I'm now trying to find and replace text in the footer of the Word files. I cannot figure out the commands to step through the storyranges of a Word file.
I get
Argument Not Optional
with Find highlighted.
Set wrdDoc = wrdApp.Documents.Open(ThisWorkbook.Path & "\Raw\Template\" & strFile, ReadOnly:=True)
...
Dim myStoryRange As Range
For Each myStoryRange In wrdDoc.StoryRanges
myStoryRange.Find.Execute FindText:=strField, ReplaceWith:=strValue, Replace:=wdReplaceAll, Wrap:=wdFindContinue
Next myStoryRange
.Find.Execute
is absolutely correct. what if you open document inReadOnly:=False
state?? – Kazimierz Jawor