VBA to delete columns A through to D on a specific Worksheet

mistrellis

Board Regular
Joined
Mar 19, 2015
Messages
53
Pretty much what the title says:

Need a command button on a worksheet that runs code to delete all data in Columns A through D (incl) on "Sheet4" as a way to cleanse the workfile for additional data import.

Note that there are formulas on "Sheet4" in columns E through U that reference the data that is to be deleted and subsequently re-imported.

Would it just be easier to manually record the macro and assign it to the command button ?

Regards
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try something such as the following:

Code:
Sub Del_Cols ()

Sheets("Sheet4").Range("A:D").EntireColumn.ClearContents 


End Sub
 
Upvote 0

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

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