View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] d.e.lindstrom@gmail.com is offline
external usenet poster
 
Posts: 18
Default a button to add 1 to a SPECIFIC cell

Sub Add1()
Range("A1").Value = Range("A1").Value + 1
Beep
End Sub