@RileyTutu,
hey,RileyTutu
For that , you can use VBA to do that. Try the macro below
Sub ConvertTablesToPictures()
Dim objTable As Table
Dim objDoc As Document
Dim objParagraph As Paragraph
Dim nTable As Integer
Set objDoc = ActiveDocument
nTable = 0
With objDoc
For Each objParagraph In .Paragraphs
If objParagraph.Range.Style = "Caption" Then
objParagraph.Range.Delete
End If
Next objParagraph
For Each objTable In .Tables
objTable.Rows(1).Select
Selection.InsertRowsAbove
nTable = nTable + 1
objTable.Cell(1, 1).Range.InsertAfter "Table" & " " & nTable
objTable.Cell(1, 1).Range.Style = "Caption"
objTable.Rows(1).Cells.Borders.Enable = False
objTable.Rows(1).Cells.Borders(wdBorderBottom).LineStyle = wdLineStyleSingle
objTable.Range.Select
Selection.Cut
Selection.PasteSpecial Link:=False, dataType:=wdPasteEnhancedMetafile, _
Placement:=wdInLine, DisplayAsIcon:=False
Next objTable
End With
End Sub