View Single Post
  #6  
Old December 15th, 2006, 03:05 PM posted to microsoft.public.word.tables
Tom
external usenet poster
 
Posts: 61
Default macro that repeats header rows of all tables?

Thanks! The macro worked perfectly. I also wanted to indent the tables,
so I added another parameter in there from a different macro.

Sub Fixmytables()
Dim t As Table
For Each t In ActiveDocument.Tables
t.Rows(1).HeadingFormat = True
t.Rows.LeftIndent = CentimetersToPoints(2.9)
Next t
End Sub

Can you tell me where I would find all the parameters that I can apply
for tables? Thanks for your help.