View Single Post
 
Old 01-05-2016, 02:22 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,365
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

I'd suggest:
Code:
Set Rng = Tbl.Cell(i, 3).Range
With Rng
  .End = .End - 1
  .Collapse wdCollapseEnd
  .Text = vbCr & "Abstract: "
  .Font.Bold = True
  .Collapse wdCollapseEnd
  .Text = StrTxt
  .Font.Bold = False
End With
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote