Patriot2879
Well-known Member
- Joined
- Feb 1, 2018
- Messages
- 1,259
- Office Version
- 2010
- Platform
- Windows
Hi, i have the code below and i am only able to add data into one combo box, it wont let me add anything into the other please can you help me, my code is below. thanks again for your time and advice.
Code:
Private Sub UserForm_Initialize()
ComboBox2.Clear
With ComboBox2
.AddItem "Data"
.AddItem "Errors"
End With
End Sub
Private Sub UserForm1_Initialize()
ComboBox1.Clear
With ComboBox1
.AddItem "Xmas"
.AddItem "Birthday"
End With
End Sub