Pivot with Custom Sort

KDBrown

New Member
Joined
Jan 11, 2010
Messages
14
Good day,

Using Excel 2007, I've successfully created the code needed to custom sort a pivot table when a particular field is selected as the first item in rows. Since this report will have multiple users, I've also coded to add the required custom list.

My problem...
The code calls the custom list via its position in the overall group of custom lists. Example: OrderCustom:=6. Since the report will have multiple users, the required list could be in any position.

Is there an alternative way of identifying which custom list to use?

Thank you!
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
You can use the GetCustomListNum Method...

Code:
n = Application.GetCustomListNum(Array("North", "East", "South", "West"))

This returns the CustomList number if found or 0 if not found.
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,852
Members
449,194
Latest member
HellScout

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