View Single Post
  #2   Report Post  
Doug Robbins
 
Posts: n/a
Default

It can't be done other than by using a macro that iterates through all of
the tables in the document and resizes them.

Something like

Dim atable as Table
For each atable in ActiveDocument.Tables
atable. [commands to resize table]
Next atable

--
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
"Misty123" wrote in message
...
Does anyone know how to select all tables in a Word document and then
resize
them all at the same time? There is also text in the document between the
tables so you can't use the "Select All".