View Single Post
 
Old 01-05-2016, 01:44 AM
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

Try something along the lines of:
Code:
Dim strtxt As String, Tbl As Table, Rng As Range
strtxt = "SomeText"
Set Tbl = ActiveDocument.Tables(1)
Set Rng = Tbl.Cell(i, 3).Range
With Rng
  .End = .End - 1
  .Collapse wdCollapseEnd
  .Text = strtxt
  .Font.Bold = True
End With
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote