Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
I want to create a combo box that accumulates the chosen options from the dropdown list into the linked cell. In other words, the destination cell needs to keep as many options as the user chooses from the drop down (with out deleting its contents). example: - Link filled list: option1, option2, option 3 - The user chose option1 & option2 - The destination cell in the combo box should display: option1 option2. Can this be done? Thanks, -- EddieV |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
EddieV
I don't think you can do it by simply using the linked cell property; but, you can do it with a simple line of code. In the combobox_change event just put: Private Sub ComboBox1_Change() Cells(1, 1).Value = Cells(1, 1).Value & ComboBox1.Value End Sub where Cells(1,1) is replaced by the cell row and column to which you want to append any combobox selections. Good luck. Ken Norfolk, Va. On Jul 27, 12:26 pm, LaRana! wrote: Hello, I want to create a combo box that accumulates the chosen options from the dropdown list into the linked cell. In other words, the destination cell needs to keep as many options as the user chooses from the drop down (with out deleting its contents). example: - Link filled list: option1, option2, option 3 - The user chose option1 & option2 - The destination cell in the combo box should display: option1 option2. Can this be done? Thanks, -- EddieV |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
link form combobox | Excel Worksheet Functions | |||
link to combobox | Excel Discussion (Misc queries) | |||
morgage schedule that accumulates interest and late fees | Excel Discussion (Misc queries) | |||
copy combobox - cell link to change automatically | Excel Worksheet Functions | |||
create a cell that accumulates, numbers from another cell... | Excel Discussion (Misc queries) |