View Single Post
 
Old 02-24-2016, 01:42 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

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.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote