View Single Post
 
Old 02-17-2012, 07:15 PM
macropod's Avatar
macropod macropod is online now 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

Hi KD999,

Try:
Code:
Sub MergeData()
Dim Rng As Range, TblRw As Row
With ActiveDocument.Tables(1)
  For Each TblRw In .Rows
    Set Rng = TblRw.Cells(2).Range
    Rng.End = TblRw.Cells(4).Range.End
    Rng.Cells.Merge
  Next
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote