deleting the contents of activecell, +2 cells next to it

P5X

New Member
Joined
Feb 16, 2002
Messages
18
I want to delete the contents of (eg) cell A2,B2,C2, how do I do this?
I thought it would be something like:

ActiveCell.Delete
ActiveCell.Offset(0, 1).Activate
ActiveCell.Delete
ActiveCell.Offset(0, 1).Activate
ActiveCell.Delete

But that doesn't work.

Thanks for any help
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
You can try this:

Sub clear_out()
Selection.Resize(Selection.Rows.Count, _
Selection.Columns.Count + 2).Clear
End Sub

This assumes that you want the active cell and the next two deleted. You could designate the 'active cell.'

Cheers,

Nate
This message was edited by NateO on 2002-02-18 11:55
 
Upvote 0
Or simply :-

ActiveCell.Resize(, 3).ClearContents

(Note the "ClearContents" instead of "Clear")
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,399
Members
448,958
Latest member
Hat4Life

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