I can't Regenerate a Pivot Table with new data

Mackeral

Board Regular
Joined
Mar 7, 2015
Messages
232
Office Version
  1. 365
Platform
  1. Windows
This is the code I'm using:
Code:
Sub a_Recalc_Pivot_Table()
    ' Macro to recalculate Pivot Table.
    ' 2/7/12 Modified. WML    '
    ' 7/29/19 Copied from "Offfice Development Center". WML

    Call Initialize_Globals
    
    Data.Activate
    
    'Determine the data range you want to pivot
    Rng = Make_Range(Data_Row, 1, -1, -1, Data)
    SrcData = "Data" & "!" & Range(Rng).ADDRESS(ReferenceStyle:=xlR1C1)
     
    DataArea = "Data!R2C1:R" & Selection.Rows.Count & "C" & Selection.Columns.Count
     
    Sheets("Pivot Table").PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
        PivotCaches.Create(SourceType:=xlDatabase, SourceData:=DataArea, _
        Version:=xlPivotTableVersion14)
        
    PIVOT.Activate
    
End Sub ' a_Recalc_Pivot_Table

It works when I add data to DATA, and I can run it any number of times then.
But when I shorten the amount of data it dies saying
Code:
Run-Time Error '-2147024809 (80070057)

The PivotTable field name is not valid.  To creat a  PivotTable report,
you must use data that is organized as a list with labeled columns.  If
you are changing the name of the PivotTable Field, you must type
a new name for the field.

But I haven't changed any field names, only deleted some of the data
to check that the routine is working correctly.

Thanks for any help.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
This is a Macro (and a few subroutines) to let you "Regenerate" your Pivot Table with new data.
Code:
Sub a_Recalc_Pivot_Table()
    ' Macro to recalculate Pivot Table.
    ' 2/7/12 Modified. WML    '
    ' 7/29/19 Copied from "Offfice Development Center". WML

    Call Initialize_Globals
    
    Rng = Make_Range(DatLabelRow, 1, -1, -1, DATA) ' "A3:Q972"
    Call Recalc_Pivot_Table("Data", Rng, "Pivot Table", 1, 1)
    
End Sub ' a_Recalc_Pivot_Table

Sub Recalc_Pivot_Table(Sheet_Spec, Rng, Pivot_Sheet_Name, Pivot_Table_Number, Starting_Col_Nr)
    ' Recalculate a Pivot Table
    ' 8/6/19 Created. WML
    
    ' Note: Assumes data starts in Column 1.
    
    Dim SrcData As String
    Dim SHEET As Worksheet
    Dim pvtCache As PivotCache
    Const Search_Chars = "abcdefghijklmnopqrstuvwxyz"
    
    Prog = "Recalc_Pivot_Table"
    
    Call Sheet_Arg(Sheet_Spec, SHEET, Sheet_Name)
    
    PIVOT.Activate
    
    Call Match_Leading_Chars(Mid_Str(Rng, ":", 1), Search_Chars, Col1, Row1)
    Call Match_Leading_Chars(Mid_Str(Rng, ":", 2), Search_Chars, Col2, Row2)
            
    TEMP = "E:\Mac's Data\Mac's Docs on E\Computer\Excel\Spread Sheets" & _
        "\Reporting\[Reporting (J).xlsm]Data!R2C1:R1196C17"
    Call Text_Before_After(TEMP, ":", Before, TS, 2)
    After = "R" & Row2 & "C" & Col_Nr(Col2)
    Srsc_Data = Before & ":" & After
    Src_Dat_Rt = Right(Srsc_Data, 55)
        
        
    Pivot_Table_Name = "PivotTable" & Pivot_Table_Number
    
    ActiveSheet.PivotTables("PivotTable1").ChangePivotCache ActiveWorkbook. _
        PivotCaches.Create(SourceType:=xlDatabase, SourceData:=Srsc_Data _
        , Version:=6)
    
End Sub ' Recalc_Pivot_Table


Function Match_Leading_Chars(Arg, Pick_From, _
                        Optional Before, _
                        Optional After)
    ' Take the leading consanants off "Arg", _
        leave then in "Before", and return the rest in "After".
    ' 8/6/19 Created. WML
    ' 8/7/19 Renamed Pick_From "Leading_Consonants" and add arg "Pick_From". WML
    ' 8/8/19 Added Error Message. WML
    
    ' Note: "Pick_From" could be "LETTERS", "NUMBERS", or _
             any other set of characters you need to use.
             
    ' Note: This may be called either as a Function or a Subroutine.
    
    Prog = "Match_Leading_Chars"
    
    If Len(Arg) Then
        Ptr = 0
        Before = ""
        Do
            Ptr = Ptr + 1
            Test = Mid(Arg, Ptr, 1)
            If InStr(Pick_From, Test) Then
                Before = Before & Test
            Else
                Exit Do
            End If
        Loop
        
        After = Mid(Arg, Ptr, 99)
        Match_Leading_Chars = Before
        
    Else
        Msg = "Called with an empty ""Arg""."
        Call Msg_Err(Prog, Msg)
        Exit Function
        
    End If

End Function ' Match_Leading_Chars()


Function Mid_Str(Text, Seperator, _
                  Optional First_Occurance = 1, _
                  Optional Nr_To_Take = 1) As String
    ' Extract the text "first_Occurance" of the string deliminated by "Sepearator" from "Text".
    ' 11/10/11 Added Nr_to_Take. WML
    ' 8/8/19 Made "First_Occurance" optional. WML
    
    TrKnt = 0
    Mid_Str = ""
    Prog = "Mid_Str"
    Dim HOLD() As Variant
   
    HOLD = Split_It(Text, Seperator)
    Mid_Str = Split_s(HOLD, First_Occurance, Nr_To_Take, Seperator)
    Exit Function
    
    If First_Occurance > 0 Then
        ' Find Start of Mid_Str in Argument
        For Skip = 1 To First_Occurance
            Ptr = EndPtr + SepLength
            Test = InStr(Ptr, Argument, Seperator)
            If Test > 0 Then
                ' Found Seperator
                EndPtr = Test
            Else
                ' Not Found.
                Exit Function
            End If
        Next Skip
    Else
        ' Start with NR'th arguent from last argument.
        Ptr = Len(Argument)
        
    End If
    
    ' Build Output String
    For Arg = 1 To Nr_To_Take
        Next_Ptr = InStr(Ptr, Argument, Seperator)
        If Len(Mid_Str) Then Mid_Str = Mid_Str & Seperator
        If Next_Ptr Then
            Mid_Str = Mid_Str & Mid(Argument, Ptr, Next_Ptr - Ptr)
        Else
            Mid_Str = Mid_Str & Mid(Argument, Ptr, 999)
            Exit Function
        End If
        Ptr = SepLength + Next_Ptr
    Next Arg
        
End Function ' Mid_Str


Function Split_s(Args As Variant, Start_Where, _
                 How_Many_Arguments, Optional Seperator = "") As String
    ' Return a string of NR pieces of ARGS.
    ' If Start_Start_Where is negative, it starts from the back.
    ' If How_Many_Arguments is negative, it leaves NR of the arguments off.
    ' Note: ARGS was prepaired by 'Split_It".
    ' Note: ARGS(0) contains the MaxNrimum number of arguments.
    ' Added Seperator as Calling Arg.
    ' 11/19/09 WML
    
    Const Prog = "Split_s"
    MaxNr = Args(0)
    IMax = How_Many_Arguments
    If Seperator = "" Then
        Seperator = Args(Args(0) + 2)
    End If
    
    ' Adjust Calc Specs.
    If Start_Where > 0 Then
        IStart = Start_Where
    Else
        IStart = MaxNr - Start_Where
    End If

    IMax = IStart + IMax - 1
    If IMax > MaxNr Then
        IMax = MaxNr
    End If
    
    Split_s = ""
    For I = IStart To IMax
        If Len(Split_s) > 0 Then Split_s = Split_s & Seperator
        Split_s = Split_s & Args(I)
    Next I
    
End Function ' Split_s
If you use this, could you let me know how it worked for you.
Thanks,
Mac Lingo
Berkeley, CA
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,460
Members
448,965
Latest member
grijken

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