Delete rows if cell is blank plus delete the next 6 rows as well

Blaise

New Member
Joined
Sep 25, 2011
Messages
14
Hello,

I need to convert invoices including a tons of items to Excel.
When I copy the text and paste it into Excel there are several rows which are the footer. These are always the same 6 rows with a blank row in front of them.
When I have 20 pages it's quite timeconsuming to delete these groups one by one.

That would be great if I could do this by pressing a button.

I've found this code but this only deletes the rows where the cell in column A is blank.

Code:
Private Sub CommandButton1_Click()


    On Error Resume Next
        Columns("A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete


End Sub

Could you pls help me with a code that deletes the next 6 rows as well?

Thank you for you help in advance,
Balazs
 
Last edited:

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Try this:-
Code:
[COLOR="Navy"]Sub[/COLOR] MG26Mar45
[COLOR="Navy"]Dim[/COLOR] Dn [COLOR="Navy"]As[/COLOR] Range, Rng [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]On[/COLOR] [COLOR="Navy"]Error[/COLOR] [COLOR="Navy"]Resume[/COLOR] [COLOR="Navy"]Next[/COLOR]
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Columns("A").SpecialCells(xlCellTypeBlanks).Areas
    [COLOR="Navy"]If[/COLOR] Rng [COLOR="Navy"]Is[/COLOR] Nothing [COLOR="Navy"]Then[/COLOR] [COLOR="Navy"]Set[/COLOR] Rng = Dn.Resize(6) Else [COLOR="Navy"]Set[/COLOR] Rng = Union(Rng, Dn.Resize(6))
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]If[/COLOR] Not Rng [COLOR="Navy"]Is[/COLOR] Nothing [COLOR="Navy"]Then[/COLOR] Rng.EntireRow.Delete
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
Hi there. Try this:

Code:
Sub deleter()
Dim blankrow As Range
Dim firstrow As Long
Dim lastrow As Long
For Each blankrow In Columns("A").SpecialCells(xlCellTypeBlanks)
    firstrow = blankrow.Row
    lastrow = firstrow + 6
    Rows(firstrow & ":" & lastrow).EntireRow.Delete

Next blankrow

End Sub
 
Upvote 0
Try this:-
Code:
[COLOR=Navy]Sub[/COLOR] MG26Mar45
[COLOR=Navy]Dim[/COLOR] Dn [COLOR=Navy]As[/COLOR] Range, Rng [COLOR=Navy]As[/COLOR] Range
[COLOR=Navy]On[/COLOR] [COLOR=Navy]Error[/COLOR] [COLOR=Navy]Resume[/COLOR] [COLOR=Navy]Next[/COLOR]
[COLOR=Navy]For[/COLOR] [COLOR=Navy]Each[/COLOR] Dn [COLOR=Navy]In[/COLOR] Columns("A").SpecialCells(xlCellTypeBlanks).Areas
    [COLOR=Navy]If[/COLOR] Rng [COLOR=Navy]Is[/COLOR] Nothing [COLOR=Navy]Then[/COLOR] [COLOR=Navy]Set[/COLOR] Rng = Dn.Resize(6) Else [COLOR=Navy]Set[/COLOR] Rng = Union(Rng, Dn.Resize(6))
[COLOR=Navy]Next[/COLOR] Dn
[COLOR=Navy]If[/COLOR] Not Rng [COLOR=Navy]Is[/COLOR] Nothing [COLOR=Navy]Then[/COLOR] Rng.EntireRow.Delete
[COLOR=Navy]End[/COLOR] [COLOR=Navy]Sub[/COLOR]
Regards Mick

Thank you Mick for your quick help, this works perfectly. Exactly what I need.
 
Upvote 0

Forum statistics

Threads
1,214,570
Messages
6,120,294
Members
448,953
Latest member
Dutchie_1

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