Results 1 to 10 of 10

Beautifying Pivot Table Macro Code

Threaded View

  1. #1
    Registered User
    Join Date
    02-23-2011
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    31

    Beautifying Pivot Table Macro Code

    Hi,

    My code works perfectly fine, but I was wondering if there was a way to make it prettier.

    I like clean looking code. This code is pretty bulky


    'Add the Dynamic Range
            ActiveWorkbook.Names.Add Name:="DynamicRange", RefersToR1C1:= _
                "=OFFSET(Sheet1!R1C1,0,0,COUNTA(Sheet1!C1),12)"
    
        'Make Labor Summary Pivot Table
            ActiveWorkbook.PivotCaches.Add(SourceType:=xlDatabase, SourceData:= _
                "DynamicRange").CreatePivotTable TableDestination:="", TableName:= _
                "Laborsum", DefaultVersion:=xlPivotTableVersion10
            ActiveSheet.PivotTableWizard TableDestination:=ActiveSheet.Cells(3, 1)
            ActiveSheet.Cells(3, 1).Select
            With ActiveSheet.PivotTables("Laborsum").PivotFields("Order")
                .Orientation = xlRowField
                .Position = 1
            End With
            With ActiveSheet.PivotTables("Laborsum").PivotFields("Cost Elem.")
                .Orientation = xlRowField
                .Position = 2
            End With
            With ActiveSheet.PivotTables("Laborsum").PivotFields("Cost element name")
                .Orientation = xlRowField
                .Position = 3
            End With
            Range("B6").Select
            Selection.Delete
            ActiveSheet.PivotTables("Laborsum").AddDataField ActiveSheet.PivotTables( _
                "Laborsum").PivotFields("ValCOArCur"), "Sum of ValCOArCur", xlSum
            
        ' Add Non-Labor Summary Pivot Table
            Sheets("Sheet1").Select
            ActiveWorkbook.PivotCaches.Add(SourceType:=xlDatabase, SourceData:= _
                "DynamicRange").CreatePivotTable TableDestination:="", TableName:= _
                "Nonlabor", DefaultVersion:=xlPivotTableVersion10
            ActiveSheet.PivotTableWizard TableDestination:=ActiveSheet.Cells(3, 1)
            ActiveSheet.Cells(3, 1).Select
            With ActiveSheet.PivotTables("Nonlabor").PivotFields("Order")
                .Orientation = xlRowField
                .Position = 1
            End With
            With ActiveSheet.PivotTables("Nonlabor").PivotFields("Cost Elem.")
                .Orientation = xlRowField
                .Position = 2
            End With
            With ActiveSheet.PivotTables("Nonlabor").PivotFields("Cost element name")
                .Orientation = xlRowField
                .Position = 3
            End With
            ActiveSheet.PivotTables("Nonlabor").AddDataField ActiveSheet.PivotTables( _
                "Nonlabor").PivotFields("ValCOArCur"), "Sum of ValCOArCur", xlSum
            With ActiveSheet.PivotTables("Nonlabor").PivotFields("AuxAcctAs1")
                .Orientation = xlColumnField
                .Position = 1
            End With
            Range("C6").Select
            Selection.Delete
    Last edited by Airgaf; 03-01-2011 at 07:36 PM. Reason: wrong tags

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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