push button question

F

Finance Guru

Hello,

I am cvurrently running Excel 2007.

1. Could somebody please tell me how to create a push button within a
worksheet.
2. a macro that I can amend which when the buttonj is pressed will clear
various
cell ranges with in the worksheet.

I know it's a lot to ask but all help would be greatfully accepted.
Thanks in anticipation
Finance Guru
Wales - the land of fire breathing dragons and rugby playing wizards
 
N

NateBuckley

Hello,

In Excel go to View - Toolbars and select Control Toolbox. On the new set of
controls lies the command button tool. Click this (it's the square) and click
anywhere on your sheet.

Double click this button, and it will open the code area.

Beneath the line that says

Private Sub CommandButton1_Click()

Copy and paste the following

Sheets("Sheet1").Range("A1:A2").ClearContents

Replace Sheet1 with the name of your sheet, and put your own Range where it
says "A1:A2".

You can have multiple lines in this macro incase you want to delete around
something.

Hope this helped somewhat.

P.S Once you're on your sheet, make sure you click out of DESIGN Mode, the
button is blueish on the toolbar, this will make it possible to click the
button.
 
F

Finance Guru

Hi Nate,

Thanks for the respone. I am new to Excel 2007.
If I go to View I cannot see the Control Toolbox anywhere. Any ideas on
where in 2007 I can find it?

Kind regards
Finance Guru.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top