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
To reset the apparent item selected in the listbox, try:
ListBox1.ListIndex = -1 ListBox2.ListIndex = -1
There will be no apparent item in the listbox control after that.