Hi.
When I initialise a user form I am populating a combo box as follows which works the first time round:
With cboBusiness
.AddItem "Hulu Limited"
.AddItem "Moustraining Ltd"
.AddItem "The Modbury Group"
End With
Once the user has pressed the Save button the data is written to the worksheet OK.
the user then presses a Clear button which is supposed to clear the data and then call the userform initialisation so that they can enter a second record.
Private Sub btnClear_Click()
cboBusiness.Value = ""
txtQty.Value = ""
txtAvWt.Value = ""
txtCost.Value = ""
txtRecQty.Value = ""
txtSDQty.Value = ""
txtNetCost.Value = ""
Call UserForm_Initialize
End Sub,
All of the data is being cleared a;part from the data held in the combo box , which is then being doubled up.
Can anyone tell me what I have got wrong
many thanks
A