View Single Post
  #2  
Old April 17th, 2007, 10:56 AM posted to microsoft.public.word.tables
Stefan Blom
external usenet poster
 
Posts: 8,433
Default Align multiple tables and pics

Try this macro on a copy of the document:

Sub AlignAllTablesLeft()
Dim t As Table
For Each t In ActiveDocument.Tables
t.Rows.Alignment = wdAlignRowLeft
t.Rows.LeftIndent = 0
Next t
End Sub

If you need assistance, see
http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"clara" wrote in message
...
Hi all,

There are many tables ( each followed by a picture ). Is there any
way to make all these to be left aligned.

Clara
--
thank you so much for your help