I\'m trying to \'reset\' a listbox in Excel VBA when a form closes. Currently when I use the userform1.hide function the form disappears but when I open it up again using th
You could use
Private Sub clearListBox() 'Clears the listbox Do Until ListBox1.ListCount = 0 Me!ListBox1.RemoveItem(0) Loop End Sub