I need to update a pivot filter after refresh to select all filter options except blank. Other answers here make use of .ShowAllItems method which
blank
.ShowAllItems
When I have to do this, I just use something like:
On Error Resume Next With pvt .ClearAllFilters .PivotItems("(blank)").Visible = False End With