View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tweedy Tweedy is offline
external usenet poster
 
Posts: 14
Default Import WILDCARD search to EXCEL from WORD

I've browsed the groups and managed to get the code below working to a point.
I'm using OFFICE 2002 and trying to search club minutes done in WORD looking
for motions that were made at meetings.
Once found the paragraph before the search text and the searched text is
imported in two separate strings to EXCEL where the macro resides. The
string always starts with "(M" and ends with ")" and also ends a paragraph.
I've tried Regular expressions and using wildcards to no avail. Would sure
like some help directly with code or a pointer to a reference on how to do
this.


~~~ CODE SNIPET ~~~
Sub MotionFinder()
Dim sPth As String
Dim sNam As String
Dim oWrd As Object
sPth = "c:\motion\"
col = 1
Row = 2
s_counter = 42

Set oWrd = CreateObject("Word.Application")
' Set oWrd = GetObject(, "Word.Application")
oWrd.Visible = True
sNam = Dir(sPth & "*.doc")
While sNam < ""
'Range("C1").Value = s_counter
oWrd.documents.Open sPth & sNam 'Open Minute documents 1 at a time
Dim rDcm As Object
Set rDcm = oWrd.activedocument.Range ' Search all
With rDcm.Find
.Text = "(M" ' Find a motion NEED WILDCARD TO FIND ALL
While .Execute ' Select the motion
rDcm.Select
Range("A" & Row).Value = rDcm
Row = Row + 1
s_counter = s_counter + 1

Wend
End With
oWrd.activedocument.Close
sNam = Dir
Wend
oWrd.Quit
Set oWrd = Nothing
End Sub

--
Thanks!
Ray Tweedale
All-around-nice-guy