View Single Post
  #2   Report Post  
Posted to microsoft.public.word.tables
Doug Robbins - Word MVP
 
Posts: n/a
Default Mass edit tables within a Word Doc ?

Running a macro containing the following code will add a row to each table
in a document

Dim i As Long
With ActiveDocument
For i = 1 To .Tables.Count
.Tables(i).Rows.Add
Next i
End With

See the article "What do I do with macros sent to me by other newsgroup
readers to help me out?" at:

http://www.word.mvps.org/FAQs/Macros...eateAMacro.htm


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

wrote in message
oups.com...
Hi;

I am general user of MS WORD (level 3 in the scale of 1-10). I have a
Word Doc which
has about 50 instances of a table template. Now I have a requirement to
add new rows for all those tables. Is there an easy way of mass editing
?

Thanks,
-Gopi