In this article, we will show you how to delete the column in Excel with VBA.
Download Workbook
You can download the free practice Excel workbook from here.
Generic Syntax
The generic syntax to delete single or multiple columns in Excel using VBA is,
Columns(column number/ column address).Delete
9 Criteria to Delete Column with VBA in Excel
In this section, you will learn how to delete a single column, multiple adjacents and non-adjacent columns, blank columns, columns with blank cells, columns from another worksheet, columns from a table and many more criteria with VBA in Excel.
We will use the following dataset as an example.
1. VBA to Delete Single Column in Excel
Steps to delete a single column in Excel with VBA are given below.
Steps:
- Press Alt + F11 on your keyboard or go to the tab Developer -> Visual Basic to open Visual Basic Editor.
- In the pop-up code window, from the menu bar, click Insert -> Module.
- Copy the following code and paste it into the code window.
Sub DeleteCol()
Columns(5).Delete
End Sub
Your code is now ready to run.
- Press F5 on your keyboard or from the menu bar select Run -> Run Sub/UserForm. You can also just click on the small Play icon in the sub-menu bar to run the macro.
Column 5 (Apr) is deleted from the dataset.
- If you want to delete a column based on the column address instead of the column number, then inside the parentheses, pass the column address instead of the column number. Then the code will look like this,
Sub DeleteCol()
Columns(E).Delete
End Sub
This piece of code will delete the E column (Apr) from the dataset.
2. VBA to Remove Multiple Columns in Excel
Steps to remove multiple columns in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteMCol()
Columns(“C:E”).Delete ‘//delete cells from range C to E
End Sub
Your code is now ready to run.
- Run the macro.
All the previous cells from C to E (Feb to Apr) have been deleted.
- This process can also be done with the Range The code to delete multiple columns using Range is shown below,
Sub DeleteMCol()
Range(“C:E”).Delete
End Sub
This will also delete cells from C to E (Feb to Apr).
Read more: How to Delete Multiple Columns in Excel
3. VBA to Remove Multiple Non-Adjacent Columns in Excel
Steps to remove multiple non-adjacent columns in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteNAdjCol()
Range("C:E, G:I").Delete
End Sub
Your code is now ready to run.
- Run the macro.
All the previous columns from C to E (Feb to Apr) and G to I (Jun to Aug) have been deleted.
4. VBA to Delete Columns with Blank Cells in Excel
Steps to delete columns with blank cells in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteBlankCells()
Range("A1:J10").Select '//range of the dataset
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.EntireColumn.Delete
End Sub
Your code is now ready to run.
- Run the macro.
All the columns carrying blank cells are deleted now.
5. VBA to Delete Blank Columns in Excel
Look at the following dataset consisting of blank columns. We will see how to delete these blank columns in Excel with VBA macro.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteBlankCol()
Dim i As Integer
For i = 1 To 4
Columns(i + 1).Delete
Next i
End Sub
Your code is now ready to run.
- Run the macro.
All the blank columns are deleted.
Similar Readings:
6. VBA to Delete Column from a Specific Worksheet in Excel
Steps to delete the column from a specific worksheet in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteColFromSheet()
Worksheets("New Column").Select '// set the sheet name
Columns("D:F").Delete
End Sub
Your code is now ready to run.
- Run the macro.
All the previous columns from D to F (Mar to May) from the “New Column” worksheet have been deleted.
7. VBA to Remove Column from a Table in Excel
Steps to delete the column from a table in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteColTable()
Dim srcTable As ListObject
Dim srcSheet As Worksheet
'Set the table from which column is to be deleted
Set srcTable = ActiveSheet.ListObjects("ExTable")
'Set the sheet that contains the table
Set srcSheet = Sheet8
With srcSheet
srcTable.ListColumns(5).Delete
End With
End Sub
Your code is now ready to run.
- Run the macro.
Column 5 (Apr) is deleted from the table.
8. VBA to Remove Multiple Columns from a Table in Excel
Steps to delete multiple columns from a table in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteMColTable()
Dim srcTable As ListObject
Dim srcSheet As Worksheet
Dim i As Integer
'Set the table from which column is to be deleted
Set srcTable = ActiveSheet.ListObjects("ExTable2")
'Set the sheet that contains the table
Set srcSheet = Sheet9
'Run the loop twice as we need to delete 2 columns
For i = 1 To 2
With Source
srcTable.ListColumns(5).Delete
End With
Next i
End Sub
Your code is now ready to run.
- Run the macro.
Columns 5 and 6 (Apr and May) have been deleted from the table.
9. VBA to Delete Column from a Table Based on Column Header in Excel
Steps to delete the column from a table based on the column header in Excel with VBA are given below.
Steps:
- Same way as before, open Visual Basic Editor from the Developer tab and Insert a Module in the code window.
- In the code window, copy the following code and paste it.
Sub DeleteColHeaderTable()
Dim srcTable As ListObject
Dim srcSheet As Worksheet
Dim i As Integer
Dim colName As String
'Set the table from which column is to be deleted
Set srcTable = ActiveSheet.ListObjects("ExTable3")
'Set the sheet that contains the table
Set srcSheet = Sheet10
'Case sensitive
colName = "Apr"
'Loop through all the columns in the table
For i = 1 To srcTable.ListColumns.Count
With srcSheet
'Check the column header
If srcTable.ListColumns(i).Name = colName Then
srcTable.ListColumns(i).Delete
Exit For
End If
End With
Next i
End Sub
Your code is now ready to run.
- Run the macro.
Column Header named Apr is deleted from the table.
Conclusion
This article showed you how to delete the column in Excel with VBA. I hope this article has been very beneficial to you. Feel free to ask any questions regarding the topic.