Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I have a worksheet containing some data in 1st column. In 1st cell of 2nd column I have a combobox (the input range is on a different sheet in same workbook). I'd like to fill active cell (selected from remaining cells of 2nd column) chosing an item from this combobox. How should I make a macro to do this? Thanks for support! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
for an activeX combobox:
Private Sub Combobox1_Click() ActiveCell.Value = Combobox1.Value End Sub There are three types of comboboxes - you need to say which type. If Data validation, it doesn't work that way. -- Regards, Tom Ogilvy "pandino" wrote in message ... Hello, I have a worksheet containing some data in 1st column. In 1st cell of 2nd column I have a combobox (the input range is on a different sheet in same workbook). I'd like to fill active cell (selected from remaining cells of 2nd column) chosing an item from this combobox. How should I make a macro to do this? Thanks for support! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
For Each Combobox | Excel Discussion (Misc queries) | |||
fill combobox depending on selection from another combobox | Excel Discussion (Misc queries) | |||
Macro that Finds the First Value in a range using a Combobox (drop down menu) | Excel Worksheet Functions | |||
combobox value | Excel Discussion (Misc queries) | |||
Sort Macro: Utilizing ComboBox Selection for Key1 through 3 Ranges | Excel Discussion (Misc queries) |