Dear Team,
I am using the mentioned vba code to find text in font color red in powerpoint . The below mentioned code i was using to find red color font text in ms word.
Further, I need to find the red color font text in each slide of my presentation.
I could not get the subroutine to successful run in the powerpoint.
Please help me with that.
Regards
I am using the mentioned vba code to find text in font color red in powerpoint . The below mentioned code i was using to find red color font text in ms word.
Code:
Sub newred()
Selection.Find.ClearFormatting
Selection.Find.Font.Color = wdColorRed
With Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
End Sub
Further, I need to find the red color font text in each slide of my presentation.
I could not get the subroutine to successful run in the powerpoint.
Please help me with that.
Regards
Last edited: