Guy, one option would be to use VBA and use the PivotTable update event to reset the filter whenever the PT updates thereby ensuring it is always set to be the correct option ... obviously there are two major caveats to this:
1 - VBA must be enabled
2 - there is nothing to prevent the user from altering the layout of the PT altogether.
How significant these issues are will depend partly on what it is you're trying to do.
Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
If Target.Name = "PivotTable1" Then
Application.EnableEvents = False
Target.PivotFields("FieldName").CurrentPage = "RequiredValue"
Application.EnableEvents = True
End If
End Sub
The above would reside in the Sheet object on which the PT resides, to implement right click on the tab containing the Pivot Table, select View Code and paste the above into the resulting window - modifying the sections in red to meet your own requirements.
Bookmarks