csamy987

New Member
Joined
Feb 5, 2019
Messages
3
Hello,

I'm trying to automatically set the current year and next year in a pivot table using VBA. This is what I have currently

Dim CurrentYear as Variant
Dim NextYear as Variant

CurrentYear = Year(Now())
NextYear = Year (Now())+1

With ActiveSheet.PivotTables("PivotTable1").PivotFields("YR")
.PivotItems("CurrentYear").Visible = True
.PivotItems("NextYear").Visible = True
End With

Every time I run it, I get an error. Can someone please help?

Thanks,
 

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.
Hi,

You're almost there. As you already noticed "PivotItems" only accepts strings, so the following line of code will work properly:
Code:
.PivotItems("2019").Visible = True

Now we need to force both CurrentYear and NextYear to convert years into strings and then use them in your code.

Code:
    Dim CurrentYear As Variant
    Dim NextYear As Variant
    
    CurrentYear = Format(Year(Now()), "0000")
    NextYear = Format(Year(Now()) + 1, "0000")
    
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("YR")
        .PivotItems(CurrentYear).Visible = True
        .PivotItems(NextYear).Visible = True
    End With

Hope it works for you.
 
Upvote 0

Forum statistics

Threads
1,215,471
Messages
6,125,000
Members
449,202
Latest member
Pertotal

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