Deleting every other column with a macro

Adrian1

Board Regular
Joined
Dec 30, 2003
Messages
126
Hi,

I have a problem...

I have a frequent task of cleaning up data on a spreadsheet. Starting from column E, I need to delete every other column as it contains irrelevant data. After all of the irrelevant columns have been deleted there musn't be any gaps left in the remaining columns. EG, sheet contains data in column D, F, H, J that I want to keep, but I want columns E, G, and I removing from the sheet and all the columns shifting over to the left.

Please help.

Thanks
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You could use the following crude macro and just include all the columns that need deleting.

Sub DeleteColumns()

Range("E:E,G:G,I:I").Select
Selection.Delete Shift:=xlToLeft
End Sub

Regads.
 
Upvote 0
do you want to do this by a macro?

try this;

Code:
    Range("E:E,G:G,I:I").Delete Shift:=xlToLeft
 
Upvote 0

Forum statistics

Threads
1,214,411
Messages
6,119,360
Members
448,888
Latest member
Arle8907

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