ListObjects name changes won't allow code to execute

lol.xls

Board Regular
Joined
Oct 5, 2009
Messages
174
I have a workbook which contains one report. Each day I copy and paste this report in a new sheet. I've been updating this workbook and here's my problem. I use a table, and have some auto sorting taking place. Whenever i create a new sheet, My table name is static at "Table1". Can i use VBA to to auto create or change or follow the table number so my code will function?

Code:
Option Explicit
Sub SortLog()
    With Application
        .ScreenUpdating = False
        .EnableEvents = False
            With ActiveSheet.ListObjects("Table1").Sort
                With .SortFields
                    .Clear
                    .Add Key:=Range("A7"), SortOn:=xlSortOnValues, Order:=xlAscending, _
                        DataOption:=xlSortNormal
                End With
                    .Header = xlYes
                    .MatchCase = False
                    .Orientation = xlTopToBottom
                    .SortMethod = xlPinYin
                    .Apply
                With .SortFields
                    .Clear
                    .Add Key:=Range("B7"), SortOn:=xlSortOnValues, Order:=xlAscending, _
                        DataOption:=xlSortNormal
                End With
                    .Header = xlYes
                    .MatchCase = False
                    .Orientation = xlTopToBottom
                    .SortMethod = xlPinYin
                    .Apply
            End With
 
        .EnableEvents = True
        .ScreenUpdating = False
    End With
End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,215,222
Messages
6,123,709
Members
449,118
Latest member
MichealRed

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top