Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am able to define and use list boxes (defining a name for data range)
individually. I would like to be able to have a user select an option from a master list and, dependent on this selection, display a new list box, adjacent cell, that has options related to the first selection. Can anyone help. Thanks (not a coder, sorry) Application - master list has Company Division selection and then have set up multiple list boxes that hold job functions against each division option. If user selects Project Office, from main list, I would like adjacent cell to display the drop down list I have defined as Project and so on |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have done something but my list box related back to a database. I did it
by writing a loop that parses through all the entries in the list box and when it finds one that was selected by the user it assigns it to variable. After it is assigned to variable, you can input it into a statement that calls some data related to the selection: Here is the loop Public Function ChooseType() Dim h As Integer Dim Typ As String For h = 0 To Sheets("Program").LstChoices.ListCount - 1 If Sheets("Program").LstChoices.Selected(h) Then _ Typ = Typ & Sheets("Program").LstChoices.List(h) ChooseType = Typ Next h End Function "Crispy" wrote: I am able to define and use list boxes (defining a name for data range) individually. I would like to be able to have a user select an option from a master list and, dependent on this selection, display a new list box, adjacent cell, that has options related to the first selection. Can anyone help. Thanks (not a coder, sorry) Application - master list has Company Division selection and then have set up multiple list boxes that hold job functions against each division option. If user selects Project Office, from main list, I would like adjacent cell to display the drop down list I have defined as Project and so on |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See http://www.contextures.com/xlDataVal02.html
and http://www.xldynamic.com/source/xld.Dropdowns.html -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Crispy" wrote in message ... I am able to define and use list boxes (defining a name for data range) individually. I would like to be able to have a user select an option from a master list and, dependent on this selection, display a new list box, adjacent cell, that has options related to the first selection. Can anyone help. Thanks (not a coder, sorry) Application - master list has Company Division selection and then have set up multiple list boxes that hold job functions against each division option. If user selects Project Office, from main list, I would like adjacent cell to display the drop down list I have defined as Project and so on |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Drop down list as part of a file name selector | Excel Discussion (Misc queries) | |||
Order of drop down list | Excel Discussion (Misc queries) | |||
Limit drop down list and linking to other info | Excel Worksheet Functions | |||
changing value of a cell by selecting an item from a drop down list | Excel Worksheet Functions | |||
Pull unique names for drop down list | Excel Discussion (Misc queries) |