Results 1 to 3 of 3

Pivot table based on named (non-contiguous) range

Threaded View

  1. #1
    Forum Contributor
    Join Date
    10-17-2008
    Location
    Vancouver
    MS-Off Ver
    2002 and XP
    Posts
    117

    Pivot table based on named (non-contiguous) range

    Hello All,

    have Sheet("List") with an autofilter and sheet("Table") with pivot table. How do I base the pivottable on the filtered (visible) items from "List"?

    I use this code so far but:

    Dim FilteredRange As Range
    Dim MyFilteredRange As Range
    Set FilteredRange = Sheet1.AutoFilter.Range. _
    SpecialCells(xlCellTypeVisible)
    MsgBox FilteredRange.Address, vbOKOnly, "Address"
    Set MyFilteredRange = Sheets("List").Range(FilteredRange.Address)
    'MsgBox MyFilteredRange.Address
    ThisWorkbook.Names("MyTable").RefersTo = MyFilteredRange.Address
    Dim Worksheet As Worksheet
    Set Worksheet = ThisWorkbook.Worksheets("Table")
    For Each PivotTable In Worksheet.PivotTables
        With PivotTable
            .RefreshTable
        End With
    Next PivotTable
    Code breaks on the pivot table is refreshed with "Reference not Valid"

    so I check the name, and the Refers to field is filled up with this
    ="$A$5:$N$5,$A$14:$N$15,$A$25:$N$25,$A$31:$N$31,$A$35:$N$35"
    How do I construct a proper range reference based on the visual cells?
    Last edited by kuraitori; 08-16-2010 at 04:57 PM.

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