I'm seeing this error: Run-time error '1004' Application-defined or object defined error Error.
I've looked over several post but can't figure it out.
The error is on this line when creating the ActiveWorkbook.PivotCaches.Create(). Seems like it is on the SourceData part.
Sub Macro10()
'
' Macro10 Macro
'
'
Columns("A:I").Select
Sheets.Add
ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"FoodSales!R1C1:R1048576C9", Version:=7).CreatePivotTable TableDestination _
:="Sheet16!R3C1", TableName:="PivotTable8", DefaultVersion:=7
Sheets("Sheet16").Select
Cells(3, 1).Select
With ActiveSheet.PivotTables("PivotTable8")
.ColumnGrand = True
I'm trying to make the following pivot table:
Row - City Column - Product Data - Total Price
What am I doing wrong?
Here is the full code:
Sub Macro10()
'
' Macro10 Macro
'
'
Columns("A:I").Select
Sheets.Add
ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
"FoodSales!R1C1:R1048576C9", Version:=7).CreatePivotTable TableDestination _
:="Sheet16!R3C1", TableName:="PivotTable8", DefaultVersion:=7
Sheets("Sheet16").Select
Cells(3, 1).Select
With ActiveSheet.PivotTables("PivotTable8")
.ColumnGrand = True
.HasAutoFormat = True
.DisplayErrorString = False
.DisplayNullString = True
.EnableDrilldown = True
.ErrorString = ""
.MergeLabels = False
.NullString = ""
.PageFieldOrder = 2
.PageFieldWrapCount = 0
.PreserveFormatting = True
.RowGrand = True
.SaveData = True
.PrintTitles = False
.RepeatItemsOnEachPrintedPage = True
.TotalsAnnotation = False
.CompactRowIndent = 1
.InGridDropZones = False
.DisplayFieldCaptions = True
.DisplayMemberPropertyTooltips = False
.DisplayContextTooltips = True
.ShowDrillIndicators = True
.PrintDrillIndicators = False
.AllowMultipleFilters = False
.SortUsingCustomLists = True
.FieldListSortAscending = False
.ShowValuesRow = False
.CalculatedMembersInFilters = False
.RowAxisLayout xlCompactRow
End With
With ActiveSheet.PivotTables("PivotTable8").PivotCache
.RefreshOnFileOpen = False
.MissingItemsLimit = xlMissingItemsDefault
End With
ActiveSheet.PivotTables("PivotTable8").RepeatAllLabels xlRepeatLabels
With ActiveSheet.PivotTables("PivotTable8").PivotFields("City")
.Orientation = xlRowField
.Position = 1
End With
With ActiveSheet.PivotTables("PivotTable8").PivotFields("Product")
.Orientation = xlColumnField
.Position = 1
End With
ActiveSheet.PivotTables("PivotTable8").AddDataField ActiveSheet.PivotTables( _
"PivotTable8").PivotFields("TotalPrice"), "Sum of TotalPrice", xlSum
End Sub