read table cell per paragraph

J

john smith

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
 
J

Jezebel

Dim pPar as Word.Paragraph

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top