Is there a more practical way to fill 2 or more different ComboBox with the same value.
so, I tried filling in ComboBox1, ComboBox2and ComboBox3 by adding items with standard codes like this
Is there a simpler code for the issues above
Thank you in advance
so, I tried filling in ComboBox1, ComboBox2and ComboBox3 by adding items with standard codes like this
Code:
Private Sub UserForm_Activate ()
With ComboBox1
.AddItem "one"
.AddItem "two"
.AddItem "three"
.AddItem "four"
End with
With ComboBox2
.AddItem "one"
.AddItem "two"
.AddItem "three"
.AddItem "four"
End with
With ComboBox3
.AddItem "one"
.AddItem "two"
.AddItem "three"
.AddItem "four"
End with
End Sub
Is there a simpler code for the issues above
Thank you in advance