daseffects
Technical User
I've been using the code below w/ some success to write the values of comboboxes to worksheets on change. However, my userform just started crashing Excel everytime I combobox was selected. Removing the code stopped the problem.
Is there a more efficient method of replicating the below?
Private Sub ComboBox5_Change()
Range("sheet1!a1" = Userform.combobox5.value
End Sub
I've also tried the below w/ no success
Private Sub ComboBox5_Change()
Range("sheet1!a1".value = Userform.combobox5.value
End Sub
David
Is there a more efficient method of replicating the below?
Private Sub ComboBox5_Change()
Range("sheet1!a1" = Userform.combobox5.value
End Sub
I've also tried the below w/ no success
Private Sub ComboBox5_Change()
Range("sheet1!a1".value = Userform.combobox5.value
End Sub
David