Reset Button

R

Raz

Please help how to create and use macro codes for a Button. (never used macro
before)

need a button in cell T4 and
need these cells (below) to reset to blank when button clicked

B8 to T8
B9 to T9
B11 to T11
B12 to T12
B14 to T14
B15 to T15
B17 to T18
............
...........
B51 to T51


Thanks
 
G

Gary''s Student

Place the button on your sheet and assign this macro to it:

Sub raz()
Range("B8:T9").Clear
Range("B11:T51").Clear
End Sub
 
R

Raz

thanks Gary, I am very new to this.
Sorry I couldn't make it work, did something wrong, its resetting my first
range but not doing the 2nd one.

getting an error message saying.

Run time error '1004'
method 'range' of object '_Global' Failed

I was testing it in a separete spreadsheet using this

Sub Button1_Click()
Range("A1:D10").Clear
Range("A12::D15").Clear
End Sub

A1 to D10 worked but showing an error and 2nd range turns yellow in the VB
window.
 

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