Hi!
I am trying to develop a Cascading Combo Box solution for someone.
Basically, I have one list (List A) in one Combo Box and depending on
what item in List A is chosen, the items in List B is shown.
I then want the items chosen in the combo boxes (List A and B) to
output into a specified (but not limited to) cells in a worksheet.
Please help!
Thanks,
See http://www.xldynamic.com/source/xld.Dropdowns.html
--
HTH
Bob Phillips
(remove nothere from the email address if mailing direct)
<iamamonkeysoareyou@gmail.com> wrote in message
news:1139561379.716189.210100@f14g2000cwb.googlegroups.com...
> Hi!
>
> I am trying to develop a Cascading Combo Box solution for someone.
>
> Basically, I have one list (List A) in one Combo Box and depending on
> what item in List A is chosen, the items in List B is shown.
>
> I then want the items chosen in the combo boxes (List A and B) to
> output into a specified (but not limited to) cells in a worksheet.
>
> Please help!
>
> Thanks,
>
Assuming you fill cboFirst with words (e.g. Oranges, Apples, Bananas) that
match the range names of the various categories (e.g. rngOranges, rngApples,
rngBananas) to appear in cboSecond, then
Private Sub cboFirst_Click()
cboSecond.ListFillRange = ActiveSheet.Range("rng" & cboFirst.Text).Address
Private Sub cboSecond_Click()
'Do something with the values in the 2 combos
NickHK
<iamamonkeysoareyou@gmail.com> wrote in message
news:1139561379.716189.210100@f14g2000cwb.googlegroups.com...
> Hi!
>
> I am trying to develop a Cascading Combo Box solution for someone.
>
> Basically, I have one list (List A) in one Combo Box and depending on
> what item in List A is chosen, the items in List B is shown.
>
> I then want the items chosen in the combo boxes (List A and B) to
> output into a specified (but not limited to) cells in a worksheet.
>
> Please help!
>
> Thanks,
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks