08-04-2009, 05:33 PM
Yes, this is possible to get data from table in Word doc.
Try this
here 1 in Tables(1) depends on number of table in the word an from which you want to fetch data
Cell(1,1) - can vary on row and column you want.
Hope this will help you.
Try this
Code:
objWord.Selection.Tables(1).Cell(1,1).Select
msgbox objWord.Selection.Text
here 1 in Tables(1) depends on number of table in the word an from which you want to fetch data
Cell(1,1) - can vary on row and column you want.
Hope this will help you.