I have the following issue:
I create a userform in excel 2013 and add for starters one text box to show the date and right underneath a combobox which is reflecting a data validation list.
As soon as i write the code
Private Sub UserForm_Initialize() Me.tbDate = Date 'fill combobox For Each cell In [cartridges] Me.cmbCartridges.AddItem cell Next cell End Sub Can anyone help pretty please?
Thanks in advance