Pivot table VBA sort syntax

OldDude

New Member
Joined
Dec 23, 2020
Messages
9
Office Version
  1. 2016
Platform
  1. MacOS
Hi Guys,

I am trying to write VBA to do a simple sort based on the following:

Col A = Unit, Col B = ID, Col C = Date, Cole E = Count of FOB.

I wish to sort on Col D to be descending and to include all fields in the row as it goes through. There are about 700 rows.

I have attempted the following code:

Dim pt As PivotTable
Dim pf As PivotField

Set pt = ActiveSheet.PivotTables("PivotTable1")
Set pf = ActiveSheet.PivotTables("PivotTable1").PivotFields("Unit")

For Each pf In pt.RowFields
pf.AutoSort xlDescending, "Count of FOB"
Next pf

==========================================================

I have also attached a screen grab of part of the pivot table data as an example.
 

Attachments

  • Screen Shot 2022-05-12 at 9.14.08 pm.png
    Screen Shot 2022-05-12 at 9.14.08 pm.png
    101.9 KB · Views: 6

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.

Forum statistics

Threads
1,215,032
Messages
6,122,772
Members
449,095
Latest member
m_smith_solihull

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