I have such case
I have uppercase sentences in title and body text, so I want to change all uppercase sentences to normal sentence case.
I tried many macros but all failed to do what I want such as
Code: Select all
Sub SetSentenceCase()
Dim objSlide As slide, objShape As shape
For Each objSlide In ActivePresentation.Slides
For Each objShape In objSlide.Shapes
If objShape.Type = msoPlaceholder Then
If objShape.PlaceholderFormat.Type = ppPlaceholderObject Then
objShape.TextFrame.textRange.ChangeCase ppCaseSentence
End If
End If
Next objShape
Next objSlide
End Sub
https://powerpointprogram.indezine.com/ ... %20button.
my file
https://www.upload.ee/files/16410288/Demo.pptx.html
Thanks