Pull specific text from a line in the document

G

gdjoshua

Anybody know how to pull text from a word docuement that is on a specific line.

So my document have two hundreds lines of formatted text. I need to get the
text from line 4...

Joshua
 
J

Jezebel

If your "lines" are actually separate paragraphs (which is usually the case
if you've got specific data on a specific "line"), use

Doc.Paragraphs(4).Range
 
Top