ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Create a button to Clear Cells (https://www.excelbanter.com/excel-discussion-misc-queries/26223-create-button-clear-cells.html)

tamato43

Create a button to Clear Cells
 
Hello,

Can anyone help me set up a button and macro to clear cells where data is
entered.

Lets say, I'm looking to clear Cells A1,B1,C1 and A3, B3, C3.

Remember I would still need a button that would then prompt the Macro.

Naz

1) Record yourself clearing the cells, as follows
Tools
Macro
Record New Macro
Select the cells
Press delete
Stop recording the macro.

2) Create button as follows
View
Toolbars
Form
From the forms bar select the button icon
Drag out a rectangular button
Once you have dragged it out a pop up will appear asking you to assign
a macro.
Select the macro you recorded in step 1)

Finished.
Any probs. Post back


--

_______________________
Naz,
London


"tamato43" wrote:

Hello,

Can anyone help me set up a button and macro to clear cells where data is
entered.

Lets say, I'm looking to clear Cells A1,B1,C1 and A3, B3, C3.

Remember I would still need a button that would then prompt the Macro.


Franz Verga

"tamato43" ha scritto nel messaggio


Hello,

Can anyone help me set up a button and macro to clear cells where
data is entered.


If you don't need to use it in a macro, but in your regular use of Excel,
you can simply customize your toolbar to add the buttons you need. For
Example, right click on a toolbar, choose Customize, from the left colum
choose Edit and then from the right you can choose the Clear Conten or the
CLear Format button and you can drag & drop it on your favorite toolbar...


--
Hoping to be helpful...

Regards

Franz Verga

----------------------------------------------------------------------------------------
To reply translate from italian InVento (no capital letters)
----------------------------------------------------------------------------------------



David McRitchie

The newsgroup for macros is excel.programming
Sorry didn't look very carefully, as I see that question was
answered; however, this is a bit different.

If those are the ONLY cells you want to clear, then i presume this is only
for one worksheet. So you could create a shape on the worksheet
itself and assign the macro to it by right-clicking on the shape.

Here is a macro that is invoked by a double click event on the
worksheet. Install to the worksheet by right click on sheet tab, view code.

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Range("A1,B1,C1 , A3, B3, C3").ClearContents
End Sub

If you want a macro to assign to a shape or to a button

Sub Clear_a1b1c1a3b3c3()
Range("A1,B1,C1 , A3, B3, C3").ClearContents
End Sub

to create a shape or a toolbutton see
http://www.mvps.org/dmcritchie/excel/toolbars.htm

If you want something along the lines of removing constants from a selection

on error resume next
Selection.SpecialCells(xlConstants).ClearContents
on error goto 0

---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"tamato43" wrote in message ...
Hello,

Can anyone help me set up a button and macro to clear cells where data is
entered.

Lets say, I'm looking to clear Cells A1,B1,C1 and A3, B3, C3.

Remember I would still need a button that would then prompt the Macro.






All times are GMT +1. The time now is 05:51 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com