View Single Post
  #2   Report Post  
Posted to microsoft.public.word.tables
Jezebel Jezebel is offline
external usenet poster
 
Posts: 1,384
Default read table cell per paragraph

Dim pPar as Word.Paragraph

For each pPar in MyTable.Cells(1,1).Range.Paragraphs
...
Next



"john smith" wrote in message
...
How to read per paragraph in the table cell?

Since in my case here, there are many paragraphs in a table cell and I
want vba macro to read it per paragrah in a table cell and write the value
into a text file.

Any helps would be so greatly appreciated!

Thanks,
John