excel vba delete columns in range

The solution for “excel vba delete columns in range” can be found here. The following code will assist you in solving the problem.

‘ Deletes 3rd column
ThisWorkbook.Worksheets(1).Columns(3).EntireColumn.Delete

‘ Deletes 3rd column in range
Range(“My_RANGE”).Columns(3).EntireColumn.Delete

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts