Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 11-07-2013, 05:02 AM
iliauk iliauk is offline How to Extract key data from word Windows 7 32bit How to Extract key data from word Office 2010 32bit
Novice
How to Extract key data from word
 
Join Date: Nov 2013
Posts: 1
iliauk is on a distinguished road
Default How to Extract key data from word

Hi,

I have a bunch of word documents/forms/questionnaires coming in and I would like to find a way to automate the extraction of several fields such as Name, Email, Company etc.

Unfortunately, the document wasn't created with this in mind so it doesn't have clear forms for the data-entered, e.g.

1. Company
Please indicate the company and provide contact details for the signatory on the contract.



Thanks very much.

Edit:

I tried a macro like this:

Sub DataExtract()
Dim oWord As Word.Application
Dim oDoc As Word.Document
Dim oCell As Word.Cell
Dim sPath As String
Dim sFile As String
Dim r As Long
Dim c As Long
Dim Cnt As Long

Application.ScreenUpdating = False

Set oWord = CreateObject("Word.Application")

sPath = "H:\WordAccess" 'change the path accordingly

If Right(sPath, 1) <> "\" Then sPath = sPath & "\"

sFile = Dir(sPath & "*.doc")

r = 2 'starting row
c = 1 'starting column
Cnt = 0
Do While Len(sFile) > 0
Cnt = Cnt + 1
Set oDoc = oWord.Documents.Open(sPath & sFile)
For Each oCell In oDoc.Tables(1).Range.Cells
Cells(r, c).Value = Replace(oCell.Range.Text, Chr(13) & Chr(7), "")
c = c + 1
Next oCell
oDoc.Close SaveChanges:=False
r = r + 1
c = 1
sFile = Dir
Loop

Application.ScreenUpdating = True

If Cnt = 0 Then
MsgBox "No Word documents were found...", vbExclamation


End If

End Sub

However it only extracts one of the tables in the document and I'm not sure how to customise that to the data I need.
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Is there a way to extract various text in Word? barnkeeper410 Word 4 07-08-2013 10:58 PM
How to Extract key data from word VBA code to extract specific bookmarks from multiple word files Rattykins Word VBA 4 06-27-2012 10:02 PM
How to Extract key data from word Extract phone number from word file donlincolnmsof Word VBA 12 06-19-2012 05:21 PM
Can I Extract a Page from Word and Make a New DOCX File? tatihulot Word 1 06-20-2010 11:38 PM
Extract Photographs The Gap PowerPoint 4 04-22-2010 07:00 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 06:24 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft