List Box Question Remove the 2 Auto Selected

wilder20

New Member
Joined
May 10, 2015
Messages
1
I have created a document that has a list box where the user selects the items and then adds them to a restricted section of of a Ammo Tab A27 - A71. when the user opens the form up with the list box there is 2 items automatically selected, how do I stop this. I have attached a link below with the document to review. The area that I need help with is on the ammo Tab

https://drive.google.com/folderview...FjTGpYOEdZdWxoY1FZb2RRREl4akx6OWc&usp=sharing
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Hello and welcome to the Board

The form initialize event is not working properly, so you could use the code below as is or create a new button labeled "clear selections":

Code:
Private Sub UserForm_Click()        ' click anywhere on the gray area
Dim it%
    For it = 0 To Me.ListBox1.ListCount - 1
        If Me.ListBox1.Selected(it) = True Then Me.ListBox1.Selected(it) = False
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,823
Members
449,049
Latest member
cybersurfer5000

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top