I would like to populate range "ar1", when I write in the form for a combobox1, range "ar1" should be populated immediately, I'm using Range ("ar1") = ComboBox1.Value, however, It only write first letter,
I also have tried to put "ar1" in controlsource from combobox properties, but when I write In the combobox1, I must close the form to see what I have written in "ar1" worksheet in excel.
Is ther any way to write into the combobox1 and immediately update the range "ar1",
Code:
****** id="cke_pastebin" style="position: absolute; top: 10px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">Private Sub ComboBox1_Change ()
Range ("ar1") = ComboBox1.Value
ComboBox1.RowSource = "as3: as" & 3 + Range ("as2"). Value 'charge the combo items that depend on ar1
ComboBox1.DropDown '
End SubPrivate Sub ComboBox1_Change ()</body>
I also have tried to put "ar1" in controlsource from combobox properties, but when I write In the combobox1, I must close the form to see what I have written in "ar1" worksheet in excel.
Is ther any way to write into the combobox1 and immediately update the range "ar1",
Code:
Code:
Private Sub ComboBox1_Change ()
Range ("ar1") = ComboBox1.Value
ComboBox1.RowSource = "as3: as" & 3 + Range ("as2"). Value 'charge the combo items that depend on ar1 range
ComboBox1.DropDown '
End SubPrivate Sub ComboBox1_Change ()
Range ("ar1") = ComboBox1.Value
ComboBox1.RowSource = "as3: as" & 3 + Range ("as2"). Value 'charge the combo items that depend on ar1
ComboBox1.DropDown '
End SubPrivate Sub ComboBox1_Change ()</body>