How do I insert symbols into a table cell? The follwoing code fails
because its not a simple selection.

Thanks
hals_left

With ActiveDocument.Tables(2).Rows(1)
.Cells(j).Select
Selection.InsertSymbol Font:="Wingdings", CharacterNumber:=-3842,
Unicode:=True
End With

RE: Insert Symbol into table cell by HelmutWeber

HelmutWeber
Thu Jul 28 06:22:03 CDT 2005

Hi,
make sgure, that the selection doesn't contain
the end-of-cell mark. like

With ActiveDocument.Tables(1).Rows(1)
.Cells(1).Select
Selection.End = Selection.End - 1
Selection.InsertSymbol _
Font:="Wingdings", CharacterNumber:=-3842, _
Unicode:=True

Greetings from Bavaria, Germany
Helmut Weber, MVP
"red.sys" & chr(64) & "t-online.de"
Word 2002, Windows 2000