Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
From Excel, I need to open a Word document, find "aaaa" in the Word
document, and then replace "aaaa" with the contents in A1 in Excel. The code I have doesn't like .Selection.Find Please help. Thanks in advance. Sub FindReplace() Dim wrdApp As Word.Application Dim wrdDoc As Word.Document Set wrdApp = CreateObject("Word.Application") wrdApp.Visible = True Set wrdDoc = wrdApp.Documents.Open("Z:\COMMON FILES\Encroachment Permits\Permit.Tracker\Testing\testdoc.doc") With wrdDoc With .Selection.Find .Text = "aaaa" .Replacement.Text = Cells("A1") .Wrap = wdFindContinue .Execute Replace:=wdReplaceAll End With If Dir("Z:\COMMON FILES\Encroachment Permits\Permit.Tracker \Testing\MyNewWordDoc.doc") < "" Then Kill "Z:\COMMON FILES\Encroachment Permits\Permit.Tracker \Testing\MyNewWordDoc.doc" End If End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find and Replace that contains some word | Excel Programming | |||
Find/Replace macro from excel to word | Excel Programming | |||
Find/Replace macro from excel into Word | Excel Programming | |||
How can I use find and replace to delete a word in Excel? | Excel Discussion (Misc queries) | |||
Ability for Excel to find and replace graphic objects (like Word) | Excel Worksheet Functions |