asked on
Sub Clear_Format_Table()
Dim WS As Worksheet, oTbl As ListObject
On Error GoTo Error_Routine
Set oWS = Application.ActiveSheet
With oWS
'Format table
For Each oTbl In .ListObjects
oTbl.TableStyle = ""
Next oTbl
'Format range
.Cells.ClearFormats
End With
Exit Sub
Error_Routine:
MsgBox Err.Description, vbExclamation, "Something went wrong!"
End Sub