cell incrementing by a specific number

  • Thread starter Thread starter andrewsheldon98
  • Start date Start date
A

andrewsheldon98

I Have the number 0 in cell A10 and would like a button to increment
this cell by 1 each time i click on it

Can some one help.
 
Assign this macro to your button. Change cell address to suit.

Range("A1").Value = Range("A1").Value + 1

HTH
Regards,
Howard
 
Back
Top