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.
 
andrewsheldon98 said:
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
 

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

Back
Top