View Single Post
 
Old 06-27-2018, 06:14 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:
With ActiveDocument.Tables(1)
  With .Cell(1, 3).Range
    .Text = "Precon Cycles 6"
    .End = .End - 3
    With .Font
      .Underline = wdUnderlineSingle
      .Bold = True
    End With
  End With
  With .Cell(2, 3).Range
    .Text = "Precon Temp 260"
  End With
End With
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote