Hi and thanks so much for your time!!!
I am trying to find all instances of bulleted lists within a large selection of a word doc and assign them a style as per our company branding.
I have gotten pretty close, the following Macro selects the first line in the first bulleted list in the selection and assigns it the style I require.
I just need some help getting it to select all the bullets in the doc.
Sub findbullets22()
'findbullets22 Macro
Dim oPara As Word.Paragraph
With Selection
For Each oPara In .Paragraphs
If oPara.Range.ListFormat.ListType = _
WdListType.wdListBullet Then
oPara.Range.Select
End If
Next
End With
Selection.Style = ActiveDocument.Styles("List Paragraph")
End Sub
Any help you could provide would be amazing - I am starting to go nuts LOL :)