combo box

C

Carmel

How do you refereNce a combobox created in excel using the hfoms toolbar.
Excel gives it a name Drop down 3 and I need to filter some data based on
the item selected from the combo

THANKS
 
P

Phillip

How do you refereNce a combobox created in excel using the hfoms toolbar.
Excel gives it a name Drop down 3 and I  need to filter some data basedon
the item selected from the combo

THANKS

Try this

Dim dr As DropDown
Set dr = ActiveSheet.DropDowns.Item("Drop Down 1")
MsgBox Range(dr.LinkedCell).Value
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top