Convert contents of cells to comma delimited text file

F

fhay

I have 3 line name and addresses in word cells. I want to extract from each cell the name, address, city , state, and zip to
a file of comma delimited text records.
 
G

Greg Maxey

fhay,

The following procedures assumes the first and second line of each cell ends
in a paragraph mark. Adapt as neccessary if that isn't your case:

Table>Covert to Text>Separate text with tabs

Edit>Replace, Find ^t Replace with ^l
Find ^13 Replace with ,
Find ^l Replace with ^p
 
Top