View Single Post
  #3   Report Post  
Posted to microsoft.public.word.tables
Greg Maxey[_2_] Greg Maxey[_2_] is offline
external usenet poster
 
Posts: 668
Default Can you copy Table Properties from one table to several others?

If create and apply a table style to first table you can apply the same
style to other tables manually or use a macro:

Sub ScratchMaco()
Dim oTbl As Word.Table
For Each oTbl In ActiveDocument.Tables
oTbl.Style = ActiveDocument.Tables(1).Style
Next
End Sub


Penny wrote:
I have several tables that need the same formatting. Can I format the
first then copy and paste just the formatting to all the rest?