Cannot share workbook because it contains a table, except it doesn't really.. Excel 2010

nWillem

New Member
Joined
Apr 30, 2014
Messages
2
Hi,

I've run into an issue with one of my commonly used workbooks. When I try to share the workbook I get the notification that it cannot be done because it contains Excel Tables or XML maps.

Indeed, when I click the drop down Name box, I find a name: "Table2".

However, when I click on Table2 in the namebox, nothing happens and my selection doesn't change.

When I take a look in the Name Manager, Table2 cannot be found..

Has anybody encountered this issue or does anybody know how to delete a table that is not there?

cheers

W
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Try running this code:
Code:
Sub LocateTables()
    Dim ws                  As Worksheet
    Dim oList               As ListObject
    
    For Each ws In ActiveWorkbook.Worksheets
        For Each oList In ws.ListObjects
            MsgBox "Table: " & oList.Name & " is on sheet '" & ws.Name & "' at range " & oList.Range.address
        Next oList
    Next ws
End Sub
 
Upvote 0
Thank you!!! The table was on a hidden sheet, I was unaware of its existence.

Cheers,
W
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,495
Messages
6,130,979
Members
449,611
Latest member
Bushra

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