Sub MakeAllTablesRegularRanges()
Dim WS As Worksheet, LO As ListObject
For Each WS In Worksheets
For Each LO In WS.ListObjects
LO.Unlist
Next
Next
End Sub
Give this macro a try...
Code:Sub MakeAllTablesRegularRanges() Dim WS As Worksheet, LO As ListObject For Each WS In Worksheets For Each LO In WS.ListObjects LO.Unlist Next Next End Sub
Give this macro a try...
Code:Sub MakeAllTablesRegularRanges() Dim WS As Worksheet, LO As ListObject For Each WS In Worksheets For Each LO In WS.ListObjects LO.Unlist Next Next End Sub
Since this is a macro and you say you have not run it yet, then it cannot be the source of your "Run-time" error. Perhaps you have some code in the BeforeSave event procedure in the ThisWorkbook's code module (which would be running when you try to save the workbook) that is the source of this error.No matter what I try to rename and save my file before running this macro, I get back a "Run-time Error '1004'"