View Single Post
  #5   Report Post  
Posted to microsoft.public.word.tables
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Working with multiple tables...

Use a macro with code like:

Dim i As Long
With ActiveDocument
For i = 1 To .Tables.Count
With .Tables(i)
.Columns(1).Width = InchesToPoints(2)
End With
Next i
End With

which will set the width of the first column in each of the tables to 2
inches.
--
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, originally posted via msnews.microsoft.com
"Ronda Monheiser" wrote in
message news
Thank you for the reply. I need to change the column width on each of
them.
There are 50 identical tables in the Word 07 document and I would just
like
to be able to reformat the columns all at one time.

Any recommendations?

"Pamelia Caswell via OfficeKB.com" wrote:

It depends on what you want to change (text?, font?, borders?, shading?,
etc.)
and what version of Word you are using.

Pam


Ronda Monheiser wrote:
Is it possible to reformat multiple identical word tables at one time?


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...ables/200908/1