+ Reply to Thread
Results 1 to 11 of 11

Pivot Table DataSource

Hybrid View

  1. #1
    Registered User
    Join Date
    03-12-2008
    Posts
    11

    Pivot Table DataSource

    hola - having a nightmare with a pivottable in VBA. I cannot give it a dynamic datasource. Surely i must be coding this wrong.

    please take a look at the code

    it breaks on setting the range for PTRange with the error
    Run Time Error '1004'

    application-defined or object-defined error
    '== set PivotTable Range and cache it for reuse ==
    Dim PTRange As Range
    Set PTRange = Range("A1").Resize(lastrow_rng, lastCol)
    
    Set PTCache = ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, _
                    SourceData:=PTRange)
                  
    '== add worksheet for pivot table ==
    Worksheets.Add
    ActiveSheet.Name = "PivotSheet"
    ActiveSheet.PageSetup.Orientation = xlLandscape
    
    '== set PivotTable Location and Source ==
    Set PT = ActiveSheet.PivotTables.Add(PivotCache:=PTCache, TableDesination:=Range("A3"), _
             TableName:="Inside Market")
       
    '== assign fields into rows / columns ==
    With PT
        .PivotFields("Trader Name").Orientation = xlRowField
        .PivotFields("Member Name").Orientation = xlRowField
        .PivotFields("Delete reason").Orientation = xlColumnField
    End With
    cheers

  2. #2
    Registered User
    Join Date
    05-28-2008
    Posts
    13
    Hi

    Are you sure lastrow_rng and lastCol have some values like one below

    lastrow_rng = 1
    lastCol = 1
    Set PTRange = Range("A1").Resize(lastrow_rng, lastCol)
    Last edited by VBA Noob; 07-24-2008 at 08:44 AM.

  3. #3
    Registered User
    Join Date
    03-12-2008
    Posts
    11
    hi shasur-

    yes they are variables set dynamically above

    in this instance

    lastcol = AY
    lastRow_rng = 16899

  4. #4
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    lastcol needs to be numeric rather than the column letters.

    lastcol = 51 'AY
    Cheers
    Andy
    www.andypope.info

  5. #5
    Registered User
    Join Date
    03-12-2008
    Posts
    11
    hey andy, niceone...didnt think of that

    but still getting the same message

    lastcol_rng = Range("A1").End(xlToRight).Column

    so lastcol_rng = 51 as you said

    but still this irritating message grrr

    am i setting PTRange correctly?

    Set PTRange = Cells(1, 1).Resize(lastCol_rng & LastRow_rng)

  6. #6
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Do you mean

    
    lastcol_rng = Range("A1").End(xlToRight).Column
    Set PTRange = Cells(1, 1).Resize(LastRow_rng , lastCol_rng )

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1