I have a multiselect listbox. The macro runs based on selected items. When it is done, I want the choices deselected. Currently I run a loop to do it:
Is there a cleaner way (one liner) to do this?
Code:
With ListBox1
For i = 0 to .ListCount - 1
.Selected(i) = False
Next i
End With
Is there a cleaner way (one liner) to do this?