Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Need some help. I have a data form that appears when an
employee runs a macro. In one of the cells I want the user to select from a drop down menu. I only want 12 possible "text entries" (choices) that can be selected. Is this possible? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could do it by code:
eg. Private Sub UserForm_Initialize() ComboBox1.AddItem "First Item" ComboBox1.AddItem "Second Item" ComboBox1.AddItem "Third Item" ComboBox1.AddItem "Fourth Item" '... End Sub Or you could set the RowSource proeprty of the Combo to an Excel Range. eg. Sheet1!A1:A12 -- Rob van Gelder - http://www.vangelder.co.nz/excel "Jeff Johnston" wrote in message ... Need some help. I have a data form that appears when an employee runs a macro. In one of the cells I want the user to select from a drop down menu. I only want 12 possible "text entries" (choices) that can be selected. Is this possible? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Drop-down list on simple excel 2003 form using "form" from data me | Excel Discussion (Misc queries) | |||
DROP DOWN MENU "source" | Excel Worksheet Functions | |||
Lost "File Menu" - now it's "Edit / View / Insert.." but no "F | Excel Discussion (Misc queries) | |||
how to hide "All" in drop-down menu of my pivot table | Excel Discussion (Misc queries) | |||
if "a" selected from dropdown menu then show "K" in other cell | Excel Worksheet Functions |