You are on page 1of 1

Sub Macro1()

Dim aDoc As Document


Dim r As Range

For Each aDoc In Application.Documents


Set r = aDoc.Range
With r.Find
.Text = "yadda"
.Replacement.Text = "whatever"
.Execute Replace:=wdReplaceAll
End With
Next
End Sub

You might also like