VBA Pivot Table Compile Error

expeo

New Member
Joined
Dec 1, 2017
Messages
17
I keep getting an compile error with the script below. Am I doing something wrong?

Code:
Sub PivotTest1()


Dim pvt1 As PivotTable
Dim pf1 As String
Dim pf1_Name As String


Set pvt1 = ActiveSheet.PivotTables("PivotTable3")
pf1 = "(Annual) Adj Close"
pf1_Name = "Annual Close"
    
    pvt1.PivotFields("Month").Orientation = xlHidden
    pvt1.PivotFields ("Year")
        .Orientation = xlRowField
        .Position = 2
    pvt1.PivotFields("Monthly Close").Orientation = xlHidden
    pvt1.AddDataField pvt1.PivotFields("(Annual) Adj Close"), pf1_Name, xlSum
       
'Is below not needed?
    With pvt1.PivotFields("Annual Close")
        .Caption = "Annual Close"
        .Function = xlAverage
        .NumberFormat = "0.00"
    End With
    
End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,214,985
Messages
6,122,606
Members
449,089
Latest member
Motoracer88

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