Have you checked the names of the tables on worksheet 'DB'.?
This small bit of code will print them all out to the Immediate Window (CTRL+G), along with their address so you can locate them.
![]()
Sub ListTables() Dim lst As ListObject For Each lst In Worksheets("DB").ListObjects Debug.Print lst.Name & " - " & lst.DataBodyRange.Address Next lst End Sub
Bookmarks