Hi, I have tried to tidy up/shorten the below macro to put all the functions to remove bold from para marks, commas, full stops, semi-colons into a single function but everything I try just doesn't seem to work. Can anyone help at all? Thanks, Shelley
Code:
With oRng.Find
'remove bold from para marks'
.Text = "^p"
.Replacement.Text = "^p"
.Replacement.Font.Bold = False
.Execute Replace:=wdReplaceAll
End With
With oRng.Find
'remove bold from semi colons
.Text = ";"
.Replacement.Text = ";"
.Replacement.Font.Bold = False
.Execute Replace:=wdReplaceAll
End With
With oRng.Find
'remove bold from commas
.Text = ","
.Replacement.Text = ","
.Replacement.Font.Bold = False
.Execute Replace:=wdReplaceAll
End With
With oRng.Find
'remove bold from full stops
.Text = "."
.Replacement.Text = "."
.Replacement.Font.Bold = False
.Execute Replace:=wdReplaceAll
End With