View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
UB UB is offline
external usenet poster
 
Posts: 120
Default Pivot table using VBA

Hi
I am trying to create a pivot table using VBA.
I have a workbook in which sheet1 has data, I have a commondbutton on sheet2
and on click on this button , I am trying to create pivot table on sheet
PivotSheet
My PivotSheet gets created but with no pivot table data. Please advise what
am I doing wrong in this code

Dim ptcache As PivotCache
Dim pt As PivotTable


Application.ScreenUpdating = False

On Error Resume Next

Application.DisplayAlerts = False

Sheets("PivotSheet").Delete

On Error GoTo 0

Set ptcache = ActiveWorkbook.PivotCaches.Add( _
SourceType:=xlDatabase, _
SourceData:=Sheets("Sheet1").Range("A1").CurrentRe gion.Address)

Worksheets.Add
ActiveSheet.Name = "PivotSheet"

Set pt = ptcache.CreatePivotTable( _
TableDestination:=Sheets("PivotSheet").Range("A1") , _
TableName:="File")

With pt

.PivotFields(3).Orientation = x1RowField
.PivotFields(15).Orientation = x1ColumnField
.PivotFields(5).Orientation = x1DataField
End With