Auto filtering (I want to see all the checks written to Bill), pivot charts, nice formatting...
Here's a macro that clears the the table style:
Sub ClearTable()
'
' ClearTable Macro
'
'
Range("Table1[#All]").Select
Selection.ClearFormats
ActiveSheet.ListObjects("Table1").TableStyle = ""
Range("A2").Select
With ActiveWindow
.SplitColumn = 0
.SplitRow = 0
End With
End Sub