maxedison9
Instructor
I'm preparing a list of addresses. Is there a way to automatically format all the text in a Microsoft Word or Excel document so that the first letter of every word is capitalized and the rest are lower case?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue] With ActiveDocument.Content.Find
.MatchWildcards = True
.Text = "<[a-z]"
.Replacement.Font.AllCaps = True
.Execute Replace:=wdReplaceAll
End With
[/blue]
maxedison9 said:format all the text .. so that the first letter of every word is capitalized and the rest are lower case