Results 1 to 5 of 5

PivotTable2 Is Listed First

Threaded View

  1. #1
    Forum Contributor
    Join Date
    01-07-2004
    Posts
    314

    PivotTable2 Is Listed First

    Hi,

    Using Excel 2013 64-bit.

    I have 2 Pivot Tables on a worksheet.
    I'm curious why PivotTable2 is listed before PivotTable1?

    Option Explicit
    
    Sub GetPivotDetails()
    
        Dim wb          As Workbook
        Dim ws          As Worksheet
        Dim pt          As PivotTable
        Dim r           As Range
        Dim r2          As Range
        Dim r3          As Range
        Dim i           As Long
        Dim sMessage    As String
        
        Set wb = ThisWorkbook
        Set ws = wb.Worksheets("sPivot")
        
        With ws
            For Each pt In .PivotTables
                Debug.Print pt.Name & " " & pt.TableRange1.Address
            Next pt
        End With
           
        'Tidy up
            Set ws = Nothing
            Set wb = Nothing
    
    
    End Sub
    Output:
    PivotTable2 $B$24:$O$38
    PivotTable1 $B$5:$O$19
    thx
    w
    Last edited by goss; 05-28-2013 at 08:34 PM. Reason: typo
    Kind regards,
    w

    http://dataprose.org

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