I am starting to use Advance Filtering, and notice that when I try to clear the filter, the table formatting is cleared as well. How can I just remove the Advance Filter settings without disturbing anything else on the table?
I found the same thing. Note though that the AutoFilter arrows & capability that normally comes with the structured table do not reappear - at least they didn't for me.5) Seems to be just the formatting (alternating colors). However, now I see that if I make a change in the table, the colors reappear. Quite odd.
Not that I am aware of.Perhaps there is a better way to clear the advanced filter items?
Not sure what you mean here as that is exactly what the 'Clear' is isn't it?Seems strange that the menu for those choices doesn't include cancelling out the filter.
In relation to the formatting I definitely agree.So, it seems to me the Advance Filter should be able to be cleared directly, without affecting anything else.
Private Sub Worksheet_Calculate()
With Me.ListObjects(1)
If .Range.SpecialCells(xlCellTypeVisible).CountLarge = .Range.CountLarge Then
.TableStyle = .TableStyle
End If
End With
End Sub