I am looking for a way in PowerPoint to search and replace the registered trademark symbol (R) in normal text with (R) in superscript text. I have tried the normal search and replace by copying the superscript text. This doesnt work, also tried to replace with ^c for clipboard, but that only seems to work in word. I have a really long document where I need to replace all registered symbols with a superscript version. I eventually found this - but it does not work where the text is in a table.
Sub superscript()
Dim osld As Slide
Dim oshp As Shape
Dim ipos As Integer
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.HasTextFrame Then
ipos = InStr(1, oshp.TextFrame.TextRange, Chr(174))
If ipos > 0 Then
Do
oshp.TextFrame.TextRange.Characters(ipos).Font.superscript = msoTrue
ipos = InStr(ipos + 1, oshp.TextFrame.TextRange, Chr(174))
Loop Until ipos = 0
End If
End If
Next oshp
Next osld
End Sub
Thank you.
Luckily, there's a simpler way: