Hi
I discovered the same issue in some Excel applications where I used the "Custom View" function.
My apps were created in an earlier version Excel 2003 and worked fine until I converted a normal range of data (matrix) to the "the new "table" function (which is indeed a very nice new feature). When I did this the Custom View function became disabled. For
some reason you can't use the Custom View in the entire workbook together with a "table", not even if the table is located in another sheet. Seems strange for me why it's like this but I assume MS has a good reason for it, but atleast there should be a message
to user when a table is created that possible Custom Views will be disabled.
Workaround?
If you absolutely need your Custom Views you can always convert a Table back to an ordinary range matrix, right click inside Table range, Select Table/Convert to range. You have to do this for all Tables in the workbook.
Below macro does the same thing but for all possible tables at once.
Sub Convert_TableToRange()
Dim wrksht As Worksheet
Dim objListObj As ListObject
Dim iSheet As Integer, iList As Integer
For Each wrksht In ActiveWorkbook.Worksheets
iList = 1
Do Until iList >= wrksht.ListObjects.Count + 1
Set objListObj = wrksht.ListObjects(iList)
objListObj.Unlist
Loop
iList = iList + 1
Next wrksht
End Sub
There are of course ways to reconvert the ranges back Tables with Macros but it becomes much more complex
than above examaple.
I hope this helped out a little bit.
regards Kimmo