Sub AllCaps2Caps()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^$"
.Font.AllCaps = True
.Forward = True
.Wrap = wdFindContinue
.Format = True
End With
While Selection.Find.Execute
Selection.Font.AllCaps = False
Selection.Range.Case = wdUpperCase
'Selection.Font.Color = wdColorRed 'покраска в тестовых целях
Wend
End Sub