VBA: Filter Pivot table on 2 terms for the same field

mikeymike123

New Member
Joined
Mar 26, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I want to filter the pivot, excluding rows where Facility Type contains 'Biological' OR 'Physical'. See code that does seem to work. Also xlOr doesnt seem to work either.
' Create PivotTable
Set sitePivotTable = sitePivotSheet.PivotTables.Add(PivotCache:=sitePivotCache, TableDestination:=sitePivotSheet.Range("A1"), TableName:=siteName & "_PivotTable")

' Set the PivotTable fields
Set sitePtField = sitePivotTable.PivotFields("Site Name")
sitePtField.Orientation = xlRowField

' Define the filter field for "Site Name"
Set sitePtField = sitePivotTable.PivotFields("Site Name")
sitePtField.Orientation = xlPageField
sitePtField.CurrentPage = siteName ' Set current page

Set sitePtField = sitePivotTable.PivotFields("Site Category")
sitePtField.Orientation = xlRowField


Set sitePtField = sitePivotTable.PivotFields("Facility Type")
sitePtField.Orientation = xlRowField
' Filter the "Facility Type" PivotField to exclude "Biological"
'sitePivotTable.PivotFields("Facility Type").PivotFilters.Add Type:=xlCaptionDoesNotContain, Value1:="Biological"

' Filter the "Facility Type" PivotField to exclude "Physical"
'sitePivotTable.PivotFields("Facility Type").PivotFilters.Add Type:=xlCaptionDoesNotContain, Value1:="Physical"

' Filter the "Facility Type" PivotField to exclude rows containing "Biological"
sitePtField.PivotFilters.Add2 Type:=xlCaptionDoesNotContain, Value1:="Biological"

' Filter the "Facility Type" PivotField again to exclude rows containing "Physical"
sitePtField.PivotFilters.Add2 Type:=xlCaptionDoesNotContain, Value1:="Physical"
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,215,219
Messages
6,123,681
Members
449,116
Latest member
HypnoFant

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top