Results 1 to 11 of 11

Macro -- Copying Pivot Table and Changing Row Labels

Threaded View

  1. #1
    Registered User
    Join Date
    07-31-2012
    Location
    here
    MS-Off Ver
    Excel 2003
    Posts
    7

    Macro -- Copying Pivot Table and Changing Row Labels

    Hola! Using Excel 2007 on Windows 7 64 bit. Familiar with using macros, but no idea how to write my own VBA -- only make very minor edits to existing code.

    I attempted to record a macro to copy a pivot table with many row labels, multiple times on the same sheet. I then want to remove all but one Row Label, then repeat until I had individual tables with only one row label each. The issue is that this macro refers to each pivot table by its name statically (PivotTable148) and does not work when moving to a new sheet. How can I reference them dynamically?

    Example code from my recorded macro below. I need the bold items to be updated dynamically. Or a totally new way to approach this Please and thank you! I'd be happy to PayPal a cup of coffee to anyone who can help! I'll need to do this regularly in my new position.

    ActiveSheet.PivotTables("PivotTable7").PivotSelect "", xlDataAndLabel, True
        Selection.Copy
        Range("I2").Select
        ActiveSheet.Paste
        ActiveSheet.PivotTables("PivotTable239").PivotFields("Product Code Description" _
            ).Orientation = xlHidden
        ActiveSheet.PivotTables("PivotTable239").PivotFields("Base Model Number"). _
            Orientation = xlHidden
        ActiveSheet.PivotTables("PivotTable239").PivotFields("ARM").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable239").PivotFields("BACK").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable239").PivotFields("CONTROL").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable239").PivotFields("BASE").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable239").PivotFields("FABRIC").Orientation = _
            xlHidden
        Range("P2").Select
        ActiveSheet.Paste
        ActiveSheet.PivotTables("PivotTable240").PivotFields("Product Code Description" _
            ).Orientation = xlHidden
        ActiveSheet.PivotTables("PivotTable240").PivotFields("ARM").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable240").PivotFields("FINISH").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable240").PivotFields("FABRIC").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable240").PivotFields("CONTROL").Orientation = _
            xlHidden
        ActiveSheet.PivotTables("PivotTable240").PivotFields("BASE").Orientation = _
            xlHidden
    End Sub
    Last edited by andcarro; 12-04-2013 at 08:33 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Changing dates in a Pivot Table using a Macro
    By peter_caswell in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-27-2012, 02:58 AM
  2. Replies: 0
    Last Post: 07-03-2012, 11:09 AM
  3. Replies: 6
    Last Post: 03-19-2012, 04:50 AM
  4. Excel 2007 : macro for changing pivot table criteria
    By sawyerjames in forum Excel General
    Replies: 0
    Last Post: 08-31-2011, 07:44 AM
  5. [SOLVED] changing Pivot table name via macro
    By Sandip in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-22-2006, 11:40 AM

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