reset values in select cells

1

1vagrowr

I would like to create a "Reset Values" button on a worksheet to clear only
select cells. All suggestions greatly appreciated.
 
B

Bob Phillips

How about tying tis macro to a forms toolbar button

Sub ResetCells()
Selection.Clear
End Sub

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top