hi, i am trying to bold all the first words in a paragraph. this code works but how do i set up a loop so it will do for the whole file?
Sub bold_first_word()
'
' bold_first_word Macro
' Macro recorded 11/30/2004 by bill
'
Selection.MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend
Selection.Font.Bold = wdToggle
Selection.MoveDown Unit:=wdParagraph, Count:=1
End Sub
Sub bold_first_word()
'
' bold_first_word Macro
' Macro recorded 11/30/2004 by bill
'
Selection.MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend
Selection.Font.Bold = wdToggle
Selection.MoveDown Unit:=wdParagraph, Count:=1
End Sub