Results 1 to 4 of 4

Extract data from word document

Threaded View

  1. #1
    Registered User
    Join Date
    11-01-2004
    Posts
    37

    Extract data from word document

    Hi

    I am going to modify a macro to extract data from MS Word documents. I run below mentioned macro but in the beginning where there is :


    ('Set a reference (Tools - References) to the

    'Microsoft Word x.0 Object Library)

    I don’t know what should I do.

    And also I face error on:

    (Dim wdApp As Word.Application)

    May somebody help me?
    The complete macro is following.

    rgds
    hme



    Sub GetDataFromWord()
    
    'Set a reference (Tools - References) to the
    'Microsoft Word x.0 Object Library
    
    Dim wdApp As Word.Application
    Dim wdDoc As Word.Document
    Dim sFile As String
    Dim rInput As Range
    
    'Define row and column of data in table
    Const lROW As Long = 2
    Const lCOL As Long = 2
    
    'Specify file that contains table
    sFile = "C:\Documents and Settings\Hashemi\Desktop\Macro test\test.doc"
    
    'instantiate Word and open document
    Set wdApp = New Word.Application
    Set wdDoc = wdApp.Documents.Open(sFile)
    
    'define range where data goes
    Set rInput = Sheet1.Range("a1")
    
    'Copy value from table and paste to cell
    With wdDoc.Tables(1)
    .Cell(lROW, lCOL).Range.Copy
    rInput.PasteSpecial xlPasteValues
    End With
    
    wdDoc.Close False
    wdApp.Quit
    
    Set wdDoc = Nothing
    Set wdApp = Nothing
    
    End Sub
    Last edited by VBA Noob; 01-13-2008 at 06:19 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1