View Single Post
 
Old 02-24-2016, 04:44 PM
npalmer610 npalmer610 is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Feb 2016
Posts: 5
npalmer610 is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
Try:
Code:
Sub MergeAllTableRows()
Dim Tbl As Table, TblRw As Row
For Each Tbl In ActiveDocument.Tables
  For Each TblRw In Tbl.Rows
    TblRw.Range.Cells.Merge
  Next
Next
End Sub
PS: Please don't resurrect old threads. I've split your post off to a new one, with a link back to the old one.
Sorry and many thanks!!
Reply With Quote