Populate Activex Combo box list from another sheet list

sanket_sk

Board Regular
Joined
Dec 27, 2016
Messages
140
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I am working on Activex Combobox which is located in "Dashboard" sheet wherein I want to display dynamic range from another sheet called "Filters"

I have created the dynamic range in "Filters" A Column using the Filter function.

Also, I have VBA (pasted below) but this VBA is referencing in "Dashboard" sheet whereas i want it from Filter Sheet, is there any trick which we can use to populate data.

Dashboard Latest .xlsm
A
1Region
2East
3North
4South
5West
Filters
Cell Formulas
RangeFormula
A2:A5A2=SORT(UNIQUE(FILTER(ASC_List[Region],ASC_List[Region]=ASC_List[Region])),)
Dynamic array formulas.



Private Sub Region_L_Change()

Dim Rng As Range

Set Rng = Range(Range("A2"), Range("A" & Rows.Count).End(xlUp))
Region_L.ListFillRange = Rng.Address
Region_L.ListIndex = 0

End Sub
 
Glad we could help & thanks for the feedback.
 
Upvote 0

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,214,979
Messages
6,122,557
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