SHUTTEHFACE
Board Regular
- Joined
- Aug 13, 2014
- Messages
- 53
Good morning,
My current code is:
The lists I have have repeat values and I need the combobox to display these only once.
Thanks!
M
My current code is:
Code:
Private Sub UserForm_Initialize()
'fill PS's Supervisor Name
For Each Value In [SupervisorList]
Me.cmbSupervisor.AddItem Value
Next Value
'fill PS's Shift and Level
For Each Value In [ShiftLevelList]
Me.cmbShiftLevel.AddItem Value
Next Value
End Sub
The lists I have have repeat values and I need the combobox to display these only once.
Thanks!
M