Jezebel, thanks for your reply,
just had another question,
i try and insert each point like so
Dim CurrentSummaryIndex As Int16 = 1
Dim SummaryRange As Word.Range =
Doc.Bookmarks.Item("SignificantMattersSummaryPoints").Range
SummaryRange.Style = "List Bullet"
For Each rSummary In dSummary.Rows
SummaryRange.InsertBefore(dbNull(rSummary("SummaryPoint")))
If Not dSummary.Rows.Count = CurrentSummaryIndex Then
SummaryRange.InsertParagraphAfter()
SummaryRange.Collapse(Word.WdCollapseDirection.wdCollapseEnd)
'Exit For
End If
CurrentSummaryIndex += 1
Next
my problem is that when i try to appy an individual style to these items
(italics or bold) all of them chnge there style. Is there anyway around
this??