Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to create a listbox of choices. When the user clicks on checkboxes
corresponding to a choice I will use those choices for further processing. This is what I have so far; how do I display the requisite checkboxes for the choices? Sub load_names() Dim emp_range As Range Worksheets(1).Activate Set emp_range = ActiveSheet.Range("b2", Range("b2").End(xlDown)) ind = 1 For Each c In emp_range UserForm1.ListBox1.AddItem c.Value ind = ind + 1 Next c UserForm1.Show End Sub thanks, David |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Making checkboxes mutually exclusive | Excel Discussion (Misc queries) | |||
Sortable list of checkboxes | Excel Discussion (Misc queries) | |||
Making a list | Setting up and Configuration of Excel | |||
Making a new list | Excel Discussion (Misc queries) | |||
Making All Checkboxes Run the Same Code | Excel Programming |