VBA to Enter Specific Text in PivotTable Filter

jski21

Board Regular
Joined
Jan 2, 2019
Messages
133
Office Version
  1. 2016
Platform
  1. Windows
Good day Mr. Excel Team,

Is there a way through VBA to enter specific text into a PivotTable filter? I'm seeking to enter the search criteria "CR,7008*" into a PivotTable Filter. The search criteria will always be "CR,7008*". I thought recording this would reveal the operation but it doesn't. It simply lists all the excluded entries in the current dataset as False. The CR,7008 data will change from month to month so simply recording the macro and using the resulting code will not work on subsequent months as the code bombs off when it attempts to run through the previous month's excluded entries and can't find them. I then have to manually go into the search filter, check the Select Multiple Items box, and enter CR,7008* in the search criteria field to get the filter to operate properly against the new dataset.

Hope this makes a bit of sense. I'm starting the above code like this:

ActiveSheet.PivotTables("PivotPark").PivotFields("Journall ID").CurrentPage = _
"(All)"
ActiveSheet.PivotTables("PivotPark").PivotFields("Journall ID"). _
EnableMultiplePageItems = True



Thanks in advance for your guidance.


jski
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try the two options below to see which one works for you.

VBA Code:
Sub FilterEspecifcText_1()
  Dim pTable As PivotTable, pField As PivotField
  Dim xStr As String
  
  xStr = "CR,7008"
  Set pTable = ActiveSheet.PivotTables("PivotPark")
  Set pField = pTable.PivotFields("Journall ID")
 
  pField.ClearAllFilters
  pField.PivotFilters.Add2 xlCaptionContains, Value1:=xStr
End Sub

----- --
VBA Code:
Sub FilterEspecifcText_2()
  Dim pTable As PivotTable, pField As PivotField, pItem As PivotItem
  Dim xStr As String, n As Long
  Application.ScreenUpdating = False
  
  xStr = "CR,7008"

  Set pTable = ActiveSheet.PivotTables("PivotPark")
  Set pField = pTable.PivotFields("Journall ID")
 
  pField.ClearAllFilters
  n = 0
  For Each pItem In pField.PivotItems
    If Not LCase(pItem) Like LCase(xStr) & "*" Then
      n = n + 1
      If n < pField.PivotItems.Count Then
        pField.PivotItems(pItem.Value).Visible = False
      Else
        MsgBox "The criteria does not exist."
        pField.ClearAllFilters
      End If
    End If
  Next
  Application.ScreenUpdating = True
End Sub
 
Upvote 1
Solution
The second code worked like a charm for me. I received a 1004 Run-time error, "Application-defined or object-defined error" at the final line of the first code; pField.PivotFilters.Add2 xlCaptionContains, Value1:=xStr.

DanteAmor--thank you so much. You've helped make a fairly complex report now run like a charm. I knew there had to be a way to do this, yet my intensive search on the internet proved futile. I really appreciate the help and guidance. This has been very instructive and I can see other possibilities for this down the road. Very useful indeed. Cheers and thanks again!

jski
 
Upvote 1

Forum statistics

Threads
1,214,415
Messages
6,119,382
Members
448,889
Latest member
TS_711

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