G
Guest
I need to insert a symbol (ie. Wingdings 2, -4014) into a word table cell
I can insert the symbol into the document using
With wdDOC
.Range.InsertSymbol(-4104, "Wingdings 2", True)
End with
I know I can insert text in a cell using wdTbl.Cell(nRow,nCol).Range.Text =
....
But when I try the .InsertSymbol with any variation of a reference to the
cell I receive the following error message "This method or property is not
available because the object does not refer to simple range or selection."
How can I do the .InsertSymbol into a word table cell?
Alternatively, how can I set a string constant to = Font = Wingdings 2,
Character = -4014
TIA
I can insert the symbol into the document using
With wdDOC
.Range.InsertSymbol(-4104, "Wingdings 2", True)
End with
I know I can insert text in a cell using wdTbl.Cell(nRow,nCol).Range.Text =
....
But when I try the .InsertSymbol with any variation of a reference to the
cell I receive the following error message "This method or property is not
available because the object does not refer to simple range or selection."
How can I do the .InsertSymbol into a word table cell?
Alternatively, how can I set a string constant to = Font = Wingdings 2,
Character = -4014
TIA