Clear Cells Button
One way:
If you use a button from the Forms toolbar, attach this macro to it
(right-click the button and choose Assign Macro):
Public Sub ClearCells
Range("I4,I0,I11").ClearContents
End Sub
In article ,
Karen Smith wrote:
How do I make a button to put on a tab that will clear information in
specific cells? ie I want the button to clear (delete) any information in
cells I4, I9, I11.
|