excel - Link cell value to form combobox value -
might easy, how link form comboxbox value cell or dropdown list of cells ? in case 1 or 2 dimensional month - year or month txt - month nr value or array needs linked form combobox.
the result should when change form combobox value updates excel cell or cells (the 2 cells combination above) , other way around, when update cell or cells, updates form combobox value.
atm, have 1 way, form combobox value using built in sub.
sub combobox1_change() thisworkbook.sheets("list").range("g2").value = form1.combobox1.value end sub
after digging around, have found answer in combobox
properties window, controlsource
. put there in case 'list'!g2
, combined sub combobox1_change()
updates month both ways.
Comments
Post a Comment