REAL-TIME

VBA Projects

Full Access with Source Code
  • Designed and Developed by PNRao

  • Full Access with VBA Source Code

  • Well Commented Codes Lines

  • Creative and Professional Design

Effortlessly
Manage Your Projects

120+ Project Management Templates

Seamlessly manage your projects with our powerful & multi-purpose templates for project management.

120+ PM Templates Includes:
  • 50+ Excel Templates

  • 50+ PowerPoint Templates

  • 25+ Word Templates

Share Post

VBA code to delete blank rows in range example will helps to delete empty rows in specific range from excel worksheet. We can use Delete method of Rows to delete the rows in a range. In this example we will see how to delete the rows from a range in excel worksheet using VB. Excel VBA Macro code for deleting rows in a range should work for all the version of Microsoft Excel 2003, Excel 2007, Excel 2010, and Excel 2013.

VBA Delete blank rows in range Excel Macro Example Code

VBA code to delete rows in a range


Here is the Example VBA syntax and Example VBA Macro to delete rows in range from excel worksheets. This will help you to know how to delete specific rows in a range from Excel workbook using VBA.

VBA delete blank rows in range: Syntax


Following is the VBA syntax and sample VBA code to delete rows in a range from worksheet using VBA. We are using the Delete method of the Rows object of worksheet.


If Application.WorksheetFunction.CountA(Rows(RowNumber)) = 0 Then Rows(RowNumber).EntireRow.Delete

Here Application.WorksheetFunction.CountA will check if the row is blank. And the Rows.delete method will delete the row if row is blank.

Delete blank rows in Range: Examples


The following VBA code is to delete blank rows in range A10 to D20 if rows are blank.

Sub sbVBS_To_Delete_Blank_Rows_In_Range()
Dim iCntr
Dim rng As Range
Set rng = Range("A10:D20")

    For iCntr = rng.Row + rng.Rows.Count - 1 To rng.Row Step -1
        If Application.WorksheetFunction.CountA(Rows(iCntr)) = 0 Then Rows(iCntr).EntireRow.Delete
    Next

End Sub 

Instructions to run the VBA code to delete blank rows in range


Please follow the below steps to execute the VBA code to delete blank rows in range from Excel worksheets.
Step 1: Open any Excel workbook
Step 2: Press Alt+F11 – This will open the VBA Editor
Step 3: Insert a code module from then insert menu
Step 4: Copy the above code and paste in the code module which have inserted in the above step
Step 5: Enter some sample data in range A1 to D20 in any column. And leave some blank rows for testing purpose.
Step 6: Now press F5 to execute the code

Now you can observe that the all blank rows are deleted from worksheet in in Range A10 to D20.

: Explained VBA Code to Delete Blank Rows in Range


Start writing the Excel VBA Macro to delete blank rows in a particular range.
Sub sbVBS_To_Delete_Blank_Rows_In_Range()

‘Declaring a variable iCntr as Long to store the row number iteration to use in for loop.
Dim iCntr As Long
‘Declaring range variable rng to set the range
Dim rng As Range

‘Assigning the range A10 to D20 to rng range object
Set rng = Range(“A10:D20”)

‘Looping through the rows in the range from last to frist. Here step statement will helps.
For iCntr = rng.Row + rng.Rows.Count – 1 To rng.Row Step -1
‘Checking the row if it is blank.
‘And deleting the row if it is blank.
If Application.WorksheetFunction.CountA(Rows(iCntr)) = 0 Then Rows(iCntr).EntireRow.Delete
Next

End Sub
Ending the sub procedure to delete blank rows in a range.

Effortlessly Manage Your Projects and Resources
120+ Professional Project Management Templates!

A Powerful & Multi-purpose Templates for project management. Now seamlessly manage your projects, tasks, meetings, presentations, teams, customers, stakeholders and time. This page describes all the amazing new features and options that come with our premium templates.

Save Up to 85% LIMITED TIME OFFER
Project Management Templates

All-in-One Pack
120+ Project Management Templates

Essential Pack
50+ PM Templates

Excel Pack
50+ Excel PM Templates

PowerPoint Pack
50+ Excel PM Templates

MS Word Pack
25+ Word PM Templates

Ultimate Project
Management Template
Ultimate Resource
Management Template
Project Portfolio
Management Templates
Categories: VBATags: Last Updated: June 17, 2022

7 Comments

  1. D K Mishra July 15, 2015 at 9:30 AM

    Thanks Dr.Rao.
    After I identified your site, my first search has been analyststabs for a simple understandable solution and implement in my codes. Thanks a lot again for your nice guidance and help. D K Mishra, SAIL, Rourkela Steel Plant

  2. PNRao July 15, 2015 at 7:53 PM

    Glad you found our site useful! Thanks-PNRao!

  3. Iain September 16, 2015 at 11:34 AM

    Hi PNRao

    I’m lost, I have a macro taking the values from a invoice (invoice number, name, item, amount etc) and adding it to a running total on a separate sheet called ‘Invoice Data’

    But due to a limitation I have 20 possible entries on the invoice for items, when I run my macro to save the data into “Invoice Data” it transposes all the remaining rows that have no data in it.

    Is there a way to remove the empty cells from being transposed to the second sheet?

    The reason why it comes up is the customer name and invoice are replicated for each line

  4. PNRao September 16, 2015 at 10:48 PM

    Hi,

    Could you please provide an example file with sample data, so that I can write macro and send it to you. Please email to: info@analysistabs.com

    Thanks-PNRao!

  5. Dider Elahi September 24, 2015 at 10:40 AM

    Sir, from ur formula it only remove A1:D10 blank data, But I want delete data from my blank cell for that reason I send a sample file for filtering/ deleting blank data. If it possible pls help me.

  6. khirod kumar March 29, 2016 at 10:49 AM

    Please any one can send me basic VBA book in my email I’d

  7. jamal smith January 23, 2018 at 8:50 PM

    can you explain why this doesn’t work

    sub deleteblankrows

    dim rng as range

    for each rng in range(cells(x,x),cells(x,x))
    if application.worksheetfunction.counta(rng.row) = 0
    then rows(rng.row).entirerow.delete
    next rng
    end sub

Leave A Comment