VBA - how to use a cell value to filter a PivotTable with a macro

landjuweeltje

New Member
Joined
Jan 27, 2011
Messages
3
Hello MrExcel,

I made a macro to perform certain filtering actions on a PivotTable, but now I want to use a cell value to make the macro filter on a specific month, so that I don't have to adapt the macro each month.

I thought this would be very simple, but I've tried several ways and I got stuck in each of them, maybe I'm not using the right syntax or maybe I forgot something? (or did I make some stupid mistakes...?) Or do you have easier or better solutions that I could try?

So if there's "05" in the cell, I want the macro to filter the PivotTable for the month of May (the PivotItem "Month" already contains the months as "01", "02" etc).

Till now I tried this:
Code:
ActiveSheet.PivotTables("PivotTable4").PivotFields("Month").CurrentPage.Range
("E1").Value

Where cell E1 contained the value that I wanted to use. I got the error "Run-time error '438': Object doesn't support this property or method".

And several variations of this:
Code:
Sub Macro1()
Dim FTW As String
Call SetVarFromCell
'FTW = SetVarFromCell()
ActiveSheet.PivotTables("PivotTable4").PivotFields("Month").CurrentPage = FTW
End Sub
 
Sub SetVarFromCell()
Dim FTW As String
Windows("Example.xls").Activate
FTW = Worksheets("SheetOne").Cells(15, "D").Value
End Sub

In this case cell D15 in SheetOne contains the value that I want to use.
But then I got the error "Run-time error '1004': Unable to set the _Default property of the PivotItem class". Clicking Debug shows that the script stopped at the line with ActiveSheet.PivotTables....

I've been searching the forums for weeks already trying to find an answer, so I thought it was time to finally post a question myself... :)

I'm using Excel 2003 on Win XP.

I would really appreciate some hints to get me on track.

Thanks in advance!

Kind regards,
Landjuweeltje
 

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

Forum statistics

Threads
1,215,046
Messages
6,122,854
Members
449,096
Latest member
Erald

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