View Single Post
 
Old 07-19-2018, 08:06 PM
orion23 orion23 is offline Windows 10 Office 2016
Novice
 
Join Date: Jul 2018
Posts: 5
orion23 is on a distinguished road
Default

So I need to run this Macro ?

Code:
Sub TableJoiner()
Application.ScreenUpdating = False
Dim oPara As Paragraph
For Each oPara In ActiveDocument.Paragraphs
  With oPara.Range
    If .Information(wdWithInTable) = True Then
      With .Next
        If .Information(wdWithInTable) = False Then
          If .Text = vbCr Then .Delete
        End If
      End With
    End If
  End With
Next
Application.ScreenUpdating = True
End Sub
I'll give this a shot tomorrow (big time difference with us...)
My fear is that by removing the rows after the merge, all records will shift up and won't remain as individual records

If you think of something else that I might be missing, kindly point it out

Thanks for your help!

Last edited by macropod; 07-19-2018 at 09:52 PM. Reason: Added code tags
Reply With Quote