Power Pivot: row items chosen from range.

countryfan_nt

Well-known Member
Joined
May 19, 2004
Messages
758
Hello friends, hope all is well!

Please help with code; I am getting: VBA Runtime Error 1004 “Application-defined or Object-defined error”.

I am trying to choose / filter the row field, from the range A1:A100 of sheet2.
so whatever is in range A1:A100 will impact and chosen to filter the powerpivot.
Please help correct the below VB code.

Thank you very much in advance!

Code:
Sub Macro1()
   Dim c As Range

For Each c In Sheets("Sheet2").Range("A1:A100")  '<<< ADAPT AS REQUIRED
  
    ActiveSheet.PivotTables("PivotTable1").PivotFields("[db].[ID].[ID]"). _
        VisibleItemsList = Array("[db].[ID].&[c.value]")

 Next c

End Sub
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,215,753
Messages
6,126,677
Members
449,327
Latest member
John4520

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