VBA Pivot - Unable to sort Grand Total desc

Mallesh23

Well-known Member
Joined
Feb 4, 2009
Messages
976
Office Version
  1. 2010
Platform
  1. Windows
Hi Team,

I am unable to sort Grand Total of Pivot descending order. I am refreshing existing pivot.
and ensuring Grand total sorting is should be descending order.

Below is my attempted code which I am using.

VBA Code:
Sub test
 Dim pt as pivottable
Dim pf as pivottable
Dim Key1 as range

Set pt = sht_Pivot.PivotTables(Pivot1)
          
Set pf = pt.PivotFields("[B]Sum of Outstanding Amount[/B]")  'Actual Data Field Name is Outstanding Amount
Set key1 = pf.DataRange.Cells(1, 1)
pf.DataRange.Sort key1, xlDescending
 
End sub



Thanks
mg
 

Attachments

  • PivotSort screenshot.png
    PivotSort screenshot.png
    38.4 KB · Views: 25
Last edited:

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hi Team,

Issue Resolved, you can ignore query. Thanks


Thanks
mg
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

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