Remove specific item from userform Listbox

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,418
Office Version
  1. 2016
Platform
  1. Windows
I have a Listbox on a userform and I need to remove a specific value if found.

The value is in a cell, F2, and the Listbox is populdated like this;

VBA Code:
Set ws = Worksheets("NOMINAL ROLL")
For i = 2 To ws.Cells(ws.Rows.Count, 1).End(xlUp).Row Step 1
If ws.Cells(i, 1).Value <> vbNullString Then ListStaff1.AddItem ws.Cells(i, 1).Value
Next i

If tried this but it doesn't remove the value;

VBA Code:
Staff = Sheets("REVIEWS").Range("F2").Text

With Me.ListStaff1
    For i = 0 To .ListCount - 1
        If .List(i, 1) = Staff Then
            .RemoveItem i
            Exit For
        End If
    Next
End With

Can someone help me understand why it doesn't work?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
In which column of the listbox are you tryinf to match?

Start with changing the for line to

For i = .ListCount -1 To 0 step -1
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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