quick code request

  • Thread starter Thread starter michelle
  • Start date Start date
M

michelle

Can anyone tell me a quick piece of code that will
increment cells h74, k74 and m 74 by 1 each time the
button is clicked?
Thanxxx Michelle
 
Hi Michelle
Private Sub CommandButton1_Click()
[H74] = [H74] + 1
[K74] = [K74] + 1
[M74] = [M74] + 1
End Sub

HTH
Cordially
Pascal
 

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