Remove all items in Listbox when variable changes

RockandGrohl

Well-known Member
Joined
Aug 1, 2018
Messages
790
Office Version
  1. 365
Platform
  1. Windows
Hello all,

I have a Userform with 3 listboxes. One is a product listbox and the other two are dates.


When you choose a product, the date listboxes automatically fill up with unique individual dates. You would then choose a date from one of the two date listboxes and continue your work.

I've found an issue, if I choose one product, the date listbox fills up as expected, but then if you choose another product, the date listbox is appended instead of replaced.

Below is the code where this takes place and I've marked the place where I think the dates should be deleted:

Code:
Sheets.Add.Name = "Temp"Set Temp = Worksheets("Temp")


Temp.Activate
Range("A1").Activate
F.Activate
Range("A3").Activate


[B]    ' DELETE DATES HERE[/B]


    Do Until Cells(ActiveCell.Row, "A").Value = ""
    If Cells(ActiveCell.Row, "A").Value = Prod Then
        OBD = Cells(ActiveCell.Row, "M").Value      '!@!
        IBD = Cells(ActiveCell.Row, "R").Value      '!@!
    
    Temp.Activate
    Cells(ActiveCell.Row, "A") = OBD
    Cells(ActiveCell.Row, "B") = IBD
    ActiveCell.Offset(1, 0).Activate
    F.Activate
    End If
    ActiveCell.Offset(1, 0).Activate
    Loop
Temp.Activate


Range("A:A").RemoveDuplicates (1)
Range("B:B").RemoveDuplicates (1)


    End With






Range("A1").Activate


' Fill Date Lists


Do Until Cells(ActiveCell.Row, "A").Value = ""
    Flight_CP.OBDateDD.AddItem Format(Cells(ActiveCell.Row, "A").Value, "dd/mm/yyyy")
    ActiveCell.Offset(1, 0).Activate
    Loop
    
Range("B1").Activate
Do Until Cells(ActiveCell.Row, "B").Value = ""
    Flight_CP.IBDateDD.AddItem Format(Cells(ActiveCell.Row, "B").Value, "dd/mm/yyyy")
    ActiveCell.Offset(1, 0).Activate
    Loop




F.Activate


Application.DisplayAlerts = False
Temp.Delete


To note, OBD and IBD are the variables that are placed into the two dates (stands for Outbound Date and Inbound Date)


So if I select the Jersey product, it will fill 4 unique Inbound Dates. Then if I select a Grand Prix product, it will see that there are 3 individual dates and add them to the bottom of the list, instead of removing the existing dates first.

The dates are added to a "Temp" sheet which is created, filled, sorted, de-duplicated. The dates are then added to the listbox and the Temp sheet is deleted.


Thanks.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
You can clear a listbox like
Code:
Me.ListBox1.Clear
 
Upvote 0
You can clear a listbox like
Code:
Me.ListBox1.Clear

Ahh! See I was looking into things like Listbox.RemoveItem but then I wasn't sure how to get it to remove all. Clear is great, thank you.



EDIT: Super, this works:

Flight_CP.OBDateDD.Clear
Flight_CP.IBDateDD.Clear


Many thanks, as ever.
 
Last edited:
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,410
Messages
6,124,752
Members
449,186
Latest member
HBryant

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