Hi
I have "dept" as ListBox and I am trying to initialize it using With-End With but I got compiler error. Thank you so much.
Private Sub UserForm_Initialize()
With dept
.AddItem = "hr"
.AddItem = "it"
.AddItem = "marketing"
.AddItem = "sales"
End With...