Filter certain pivot table on certain condition using VBA

orc_RadRad

New Member
Joined
Oct 8, 2021
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
Hi guys,
I'm trying to make the below code work, but unsucessfully so far.
On the side I'm having dynamic table (table6[MG]) and then i'm having a set of pivot tables. What i wanna do is if PT is named "a" then filter that table by "a" and proceed with next PT in the list


VBA Code:
Dim cell As Range
Dim rng As Range


Set rng = Range("Table6[MG]")

For Each cell In rng

ActiveSheet.PivotTables("" & cell & "").PivotFields( _
        "[GameData].[MultiGame].[MultiGame]").VisibleItemsList = Array( _
        "[GameData].[MultiGame].&[" & cell & "]")
        
    Next cell

Kind regards
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,215,221
Messages
6,123,699
Members
449,117
Latest member
Aaagu

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