View Single Post
 
Old 01-31-2014, 01:04 PM
gmaxey gmaxey is offline Windows 7 32bit Office 2010 (Version 14.0)
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

Code:
Sub Macro1()
  Selection.Tables(1).Cell(2, 3).Select
  Selection.Collapse wdCollapseStart
  Selection.InsertSymbol Font:="Wingdings", CharacterNumber:=-4022, Unicode:=True
  Selection.InsertSymbol Font:="Times New Roman", CharacterNumber:=9632, Unicode:=True
  'or
  Dim oRng As Word.Range
  Set oRng = Selection.Tables(1).Cell(1, 3).Range
  oRng.Collapse wdCollapseStart
  With oRng
    .Text = ChrW(&H25A0)
    .Font.Name = "Times New Roman"
  End With
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote