Word to Excel Code

r.maseko

New Member
Joined
Sep 12, 2011
Messages
21
Hi Guys!

I have the following code that gets data from tables within a word document then copies this data to an excel spreadsheet.

How do I get the code to put each specific value to a specic excel cell as it goes through the loop. Eg when executing first loop I want the result to appear in cell D3, the next loop S6 etc. At the moment the code is only putting all values in one excel column (D column)(as specified in:ws.Cells(y - 2, 4).Value = t.Cell(y, 5).Range.Text


Code:
Sub WordToExcel()
  Dim MyWd       As Object
  'Dim myExc As Excel.Sheets
  Dim ws As Worksheet
 
    Set MyWd = GetObject("folder path")
    Set ws = ActiveWorkbook.Sheets("Sheet1")
  x = 0
  For Each t In MyWd.Tables
  x = x + 1
  Debug.Print "Table: ", x
Debug.Print "Rows: ", t.Rows.Count
Debug.Print "Value in first cell: ", t.Cell(1, 1).Range.Text
If InStr(1, t.Cell(1, 1).Range.Text, "industry", vbTextCompare) > 0 Then
  y = 3
    Do While InStr(1, t.Cell(y, 2).Range.Text, "total", vbTextCompare) = 0
    Debug.Print , t.Cell(y, 5).Range.Text
    'ws.Cells(y - 2, 1).Value = t.Cell(y, 2).Range.Text
    ws.Cells(y - 2, 4).Value = t.Cell(y, 5).Range.Text
    y = y + 1
  Loop
 
End If
 
  Next
End Sub


Many thanks,

:)
 
Last edited:

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,224,603
Messages
6,179,854
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top