
Hi @Soumya R
Welcome to Microsoft Q&A forum
Regarding your concern, if the Titus footer is in text format, you can automate its removal in PowerPoint using VBA.
I have a quick test and you can try my workaround:
1.Enable Developer Tab
-Go to File > Options > Customize Ribbon.
-Check the Developer box.
2.Open VBA Editor
-Click Developer > Visual Basic.
-Insert a new module via Insert > Module.
-Paste the script
Sub RemoveTitusFooters()
Dim sld As Slide
Dim shp As Shape
Dim keywords As Variant
Dim k As Variant
keywords = Array("Titus", "Titus Confidential", "Titus Internal", "Titus Classified")
For Each sld In ActivePresentation.Slides
For Each shp In sld.Shapes
If shp.HasTextFrame Then
For Each k In keywords
If InStr(1, shp.TextFrame.TextRange.Text, k, vbTextCompare) > 0 Then
shp.Delete
Exit For
End If
Next k
End If
Next shp
Next sld
End Sub
3.Run the Script
-Close the editor.
-Click Developer > Macros.
-Select RemoveTitusFooters and click Run.
I hope it will be helpful for your situation
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.