Sort pivot table on grand total column

CookieMonster76

Board Regular
Joined
Apr 30, 2015
Messages
195
Hi

I need to sort a pivot table on the "Grand total" column. I have tried using the recorder, but i can't get it to work.

The code I have is below, would anyone know how to finish it off please?

Dim sht As Worksheet
Dim pvtCache As PivotCache
Dim pvt As PivotTable
Dim rgPivot As Range
Dim SrcData As String
Dim pf As String
Dim pf_Name As String
SrcData = Sheets("Salary Source").Range("A1").CurrentRegion.Address(ReferenceStyle:=xlR1C1)
Set sht = Sheets("Salary")
Set rgPivot = sht.Range("A1")
Set pvtCache = ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:=SrcData)
Set pvt = pvtCache.CreatePivotTable(TableDestination:=rgPivot, TableName:="Salary Costs")
With pvt
.PivotFields("Surname").Orientation = xlRowField
.PivotFields("Element").Orientation = xlColumnField
.ManualUpdate = False
.AddDataField .PivotFields("Value"), pf_Name, xlSum
pf_Name = "Value"
.DataBodyRange.NumberFormat = "#,##0.00;(#,##0.00)"
.InGridDropZones = True
.RowAxisLayout xlTabularRow


End With

Thanks

Paul
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,216,117
Messages
6,128,937
Members
449,480
Latest member
yesitisasport

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top