R
Richard
Hi
I am trying to insert a bulleted point with this:
With wrdCell.Range
.AutoFormat
.Text = "Text First Line"
.InsertParagraphAfter
.Collapse (wdCollapseEnd)
.End = .End - 1
.ListFormat.ApplyBulletDefault
.Words(1).Font.Name = "Arial"
.Words(1).Font.Size = 10
.Words(1).Font.Italic = False
.InsertAfter "Text second line"
End With
The result is:
Text First Line
- Text second line
-
with and extra bullet. How do I code it to remove the second bullet or
please edit my code.
Many thanks in advance.
Richard
I am trying to insert a bulleted point with this:
With wrdCell.Range
.AutoFormat
.Text = "Text First Line"
.InsertParagraphAfter
.Collapse (wdCollapseEnd)
.End = .End - 1
.ListFormat.ApplyBulletDefault
.Words(1).Font.Name = "Arial"
.Words(1).Font.Size = 10
.Words(1).Font.Italic = False
.InsertAfter "Text second line"
End With
The result is:
Text First Line
- Text second line
-
with and extra bullet. How do I code it to remove the second bullet or
please edit my code.
Many thanks in advance.
Richard