Error in Filtering pivot table

I have two columns in pivot table one is cust_id and another one is Count of Invoice_id. Now i want to filter the count of Invoice_Id for value greater than or equal to 50. I am trying the vba code to that it is not working, can any one help me.

My code written is
Range(“A5”).Select
ActiveSheet.PivotTables(“PivotTable2”).PivotFields(“Cust_ID”).PivotFilters. _
Add2 Type:=xlValueIsGreaterThanOrEqualTo, DataField:=ActiveSheet. _
PivotTables(“PivotTable2”).PivotFields(“Count of Invoice_ID”), Value1:=50

It is always giving me the values of less than 50.

Try like below. Thanks.

Set myPivotField = ActiveSheet.PivotTables(“PivotTable2”).PivotFields(“Count of Invoice_ID”)
filterValue = “50”

myPivotField.CurrentPage = filterValue