RANGEs into COLLECTION: deleting them in loop, cause row ranges move to left?

Gemitec

New Member
Joined
Jun 22, 2021
Messages
20
Office Version
  1. 2013
Platform
  1. Windows
Hello

I have a strange Problem: if I loop through a collection, where I put Range into it, and delete them with VBA, the last row somehow "grabs" a range from "right" and pull it to the left.

Please see the pictures:

Procedure_1: here you see the spreadsheet
Procedure_2: This is my Listbox1 on my userform, where I select the value I want to delete (another button starts the sub)
Procedure_3: here you see, I use the common "for each" to loop and delete
Procedure_4: here you see everything is fine, until:
Procedure_5: at the last he wants to delete, he just pull another range from right to left

:O

You know why this is happening?

Here my code for the "delete button" with listbox1 value selected:

VBA Code:
Private Sub CommandButton13_Click()
Dim Listbox1_Find                           As Range 'This is the range where it founds the first value in the search
Dim FirstAddress                            As String 'Temporary made to fix the first Found adress of the searched value
Dim Listbox2_Items                          As New Collection ' We place here all the found items
Dim vItem                                   As Range 'This adds the values from the collection to the Listbox
Dim selections As Range

Dim i As Integer
Dim j As Integer

'_______________________________________________________    Start Setting up Userform...

Me.ListBox2.Clear
Me.ListBox3.Clear
Me.ListBox4.Clear

With Einstellungen.Logistik
    On Error Resume Next
    For i = 3 To 10
    .Controls("Textbox" & i).Value = ""
            Next i
    For i = 14 To 22
    .Controls("CommandButton" & i).Enabled = False
    .Controls("CommandButton" & i).BackColor = &HE0E0E0
            Next i
End With

Me.CommandButton15.Enabled = True
Me.CommandButton15.BackColor = &HFFFFFF

Me.CommandButton11.Enabled = True
Me.CommandButton11.BackColor = &HFFFFFF
Me.CommandButton13.Enabled = True
Me.CommandButton13.BackColor = &HFFFFFF

Me.TextBox4.Value = Me.ListBox1.Value
Me.TextBox3.Value = Me.ListBox1.ListIndex + 1
'_______________________________________________________    End Setting up Userform.

   Worksheets("Einstellungen_Versand1").Select
     
        With Worksheets("Einstellungen_Versand1").Range("b1:b" & (Cells(Rows.count, 2).End(xlUp).Row))
          
            Set Listbox1_Find = .Find(what:=Einstellungen.Logistik.TextBox3.Value, LookIn:=xlValues, lookat:=xlWhole)
          
            If Not Listbox1_Find Is Nothing Then
              
                FirstAddress = Listbox1_Find.Address
                On Error Resume Next

                Do
                    Set selections = Worksheets("Einstellungen_Versand1").Range("b" & Listbox1_Find.Row & ": t" & Listbox1_Find.Row)
                    Listbox2_Items.Add selections
                    Set Listbox1_Find = .FindNext(Listbox1_Find)
                  
                Loop While Listbox1_Find.Address <> FirstAddress
                              
                On Error GoTo 0
               
                For Each vItem In Listbox2_Items
                    vItem.Delete
                Next vItem
           
            End If
     End With
End Sub
 

Attachments

  • Procedure_1.png
    Procedure_1.png
    20.4 KB · Views: 13
  • Procedure_2.png
    Procedure_2.png
    8 KB · Views: 13
  • Procedure_3.png
    Procedure_3.png
    6.7 KB · Views: 12
  • Procedure_4.png
    Procedure_4.png
    22.1 KB · Views: 13
  • Procedure_5.png
    Procedure_5.png
    21.5 KB · Views: 14
Last edited by a moderator:

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Specify the Shift argument for the Delete as xlShiftUp. Otherwise you are leaving Excel to guess which way you want to delete.
 
Upvote 0
Solution
Hello Rory
Thanks for your quick and short answer. It works now :)
Regards
 
Upvote 0

Forum statistics

Threads
1,214,891
Messages
6,122,105
Members
449,066
Latest member
Andyg666

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