While you can do this easily from the worksheet itself, sometimes you may want to use the VBA route to delete rows in Excel. These could be deleting a specific row, multiple rows in the selection, deleting alternate rows or those that have a specific value in it. In this tutorial, I will show you how to delete rows in Excel using VBA (multiple scenarios). So let’s get started!

Delete an Entire Row using VBA

To delete an entire row in Excel using VBA, you need to use the EntireRow.Delete method. For example, if you want to delete the entire first row in a worksheet, you can use the below code: The above code first specifies the row that needs to be deleted (which is done by specifying the number in bracket) and then uses the EntireRow.Delete method to delete it. You can also delete multiple rows by specifying these rows in the code. For example, the below code will delete row number 1, 5 and 9 in the worksheet: The above code uses the same logic, where it specifies the row numbers and Excel will delete these rows one by one.

Delete All Rows in the Selection

In case you want to delete all the rows in a selected range of cells, you can use the VBA macro code below: The above code applies to the EntireRow.Delete method to the entire selection.

Delete Alternate rows (or Delete Every Third/Fourth/Nth Row)

Sometimes, you may get a data dump where every second row (or third, fourth or Nth rows) is useless and needs to be deleted. I used to work with financial data where every second row was empty and had to be deleted. This is the type of scenario where VBA really shines. Below is the VBA code that will go through all the rows in the selection and delete every second row: Let me explain how this VBA code works. First, I have used a variable RCount to get the total number of rows in the selection. Then I have used a For Next loop to run this as many times as many rows are there. For example, if there are 12 rows, this loop will run from 12 to 1 (i.e., 12 times). It’s important to run this from the last row in the selection to the first as we don’t want the row numbers to change when a row is deleted. Also, Step -2 is used since we need to delete every other row (from bottom to top). In case you want to delete every third row, you can use -3. Within the VBA loop, I have used the Selection.Rows(i).EntireRow.Delete method to delete every alternate row.

Delete Blank Rows with VBA

You can also use the EntireRow.Delete method to delete all blank rows. Below is the VBA code that will select blank cells in the selected dataset and delete the entire row. The above code uses the SpecialCells property to select and delete all the cells that are blank. This is the same method that also allows us to use ‘Go To Special’ dialog box to select all blank cells. Once these blank cells are identified using SpecialCell, these are then deleted using the EntireRow.Delete method.

Delete Rows with a Specific Word/Value

You can also use a simple VBA code to go through each cell in the selected range and delete all the rows where a cell contains a specific text or value. For example, suppose you have a dataset and I want to delete all cells that have the text Printer in column 2 of the selection.

Below is the code that will do this: The above code first counts the total number of rows in the selection. This will make sure the loop is run only these many times. It then uses the ‘For Next loop’ to go through all the cells in Column 2. The IF THEN ELSE statement is then used to check the value in each cell in column 2. And in case the value/text matches the specified text (which is ‘Printer’ in this example). In this example, I have checked whether the text matches a specific string or not. You can also do this with values. For example, you can delete all rows where the sale value is less than 1000 or more than 1000. Note: An important thing to note here is that the loop runs from Selection.Rows.Count To 1 to make sure when a row is deleted, it doesn’t impact the rows above it.

How to Use This VBA Code

Now let me show you how to use all the codes mentioned in this tutorial to delete the entire row. You need to copy and paste these codes in a module in Excel VB Editor. Once you have these codes copied, you can then run the macro codes. Below are the steps to copy and paste these VBA codes in a module: And to run these codes, you can place the cursor anywhere in the code (that you want to run) and hit the F5 key (or click on the green triangle in the VBA toolbar). I have also written a detailed tutorial on different ways to run VBA macro codes in Excel. So these were some VBA codes that you can use to delete entire rows in Excel (in different scenarios). The same logic can also be applied in case you want to delete columns instead of rows (with the corresponding adjustment in the code examples). Hope you found this tutorial useful! You may also like the following Excel tutorials:

Excel VBA Autofilter: A Complete Guide with Examples Delete Rows Based on a Cell Value (or Condition) in Excel Insert a Blank Row after Every Row in Excel (or Every Nth Row) How to Quickly Unhide COLUMNS in Excel