A family of Microsoft word processing software products for creating web, email, and print documents.
For the table, you could use code like:
With ActiveDocument.Tables(1)
While (InStr(.Rows(1).Range.Text, "Closed Captions") = 0) And (InStr(.Rows(1).Range.Text, "Slide number") = 0)
.Rows(1).Delete
Wend
End With
For the filename, you could put a FILENAME field in the header. This will show "Hello World.doc". No macros required. If you really don't want the extension, then code will be required, including checking to make sure nothing else in the header is affected.