Sorting A Named Range

BrianExcel

Well-known Member
Joined
Apr 21, 2010
Messages
975
I have three named ranges, each of which populates the same combo box depending which of three combo boxes are chosen.

What I need to happen is for the range within the combo box to sort Ascending, but not necessarily the source data set. If the source data changes fine, but what's important is that the combo box sort and display correctly.

Ideas?
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
The following will sort the range on the sheet.

Code:
    Dim nameRng As Range
    Set nameRng = Range("NAMEDRANGE")
    nameRng.Sort Key1:=nameRng.Cells(1, 1), Order1:=xlAscending

Let me know if that works.
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,299
Members
452,904
Latest member
CodeMasterX

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