Excel vba Pivot table - Sort Field based on Custom Sort

Biz

Well-known Member
Joined
May 18, 2009
Messages
1,773
Office Version
  1. 2021
Platform
  1. Windows
Hi,

I feel I have another difficult question.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>
<o:p> </o:p>
I have custom sort list in Sheets(“Custom List”) and created a Named Range as cSortList.<o:p></o:p>
<o:p> </o:p>
How can I do custom sort List Field in Pivot Table using my custom sort list using Excel VBA?<o:p></o:p>
<o:p></o:p>
<o:p>
Code:
Sub SortIt()
Dim rOrderCustom
rOrderCustom = Sheets("Custom Sort").Range("cSortList").Value
ActiveSheet.PivotTables("PivotTable1").PivotFields("List").Sort _
        OrderCustom:=rOrderCustom.Value
End Sub
</o:p>
<o:p></o:p>
I tried creating a code with no results.<o:p></o:p>

Biz
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
You have to add the list to the custom lists in Excel Options. You then specify the list number in the code.
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,841
Members
452,948
Latest member
UsmanAli786

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